Hi Dirk, Are you not getting the status or not getting the event raised at all?
The following is a working sample (aspx VB page). Hope it helps! Jon This is the UpdatePanel trigger: <asp:AsyncPostBackTrigger ControlID=chkSpecificHotListEntitiesOnly EventName="CheckedChanged" /> This is the routine that the trigger calls. Protected Sub chkSpecificHotListEntitiesOnly_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles chkSpecificHotListEntitiesOnly.CheckedChanged If Me.chkSpecificHotListEntitiesOnly.Checked Then RetrieveData(False, "") HotListCollection = Me.mDisplayItemCollection Else RetrieveData(True, "") HotListCollection = Me.mDisplayItemCollection End If End Sub -----Original Message----- From: Servers Alive Discussion List [mailto:sal...@woodstone.nu] On Behalf Of Dirk Bulinckx Sent: Thursday, November 19, 2009 8:55 AM To: Servers Alive Discussion List Subject: [SA-list] webserver - saweb - Ajax We're currently at re-creating the webserver within Servers Alive, and one of the things we would like to do is to have the "good-old" SAWeb now standard within Servers Alive. Best would be to be able to use some new technology like Ajax. BUT we're a little stuck on some parts. If you know a little about Ajax "programming" and would like to help us a little then please let me know :-) The first thing we're now looking for is that we want to have a Ajax "call" to the server when a checkbox within a webpage is clicked, when you "check" the checkbox but also when you uncheck that checkbox. In both cases the "ID" of the checkbox (name of it) and it's status should be send to the server. When checking it, that part is "easy" (for us that is), when unchecking however we don't get the info to the server :-( dirk. To unsubscribe send a message with UNSUBSCRIBE in the subject line to salive@woodstone.nu If you use auto-responders (like out-of-the-office messages), make sure that they are not sent to the list nor to individual members. Doing so will cause you to be automatically removed from the list. To unsubscribe send a message with UNSUBSCRIBE in the subject line to salive@woodstone.nu If you use auto-responders (like out-of-the-office messages), make sure that they are not sent to the list nor to individual members. Doing so will cause you to be automatically removed from the list.