What will be the event name for the checked event flag when using an ajax trigger asynchronous call?

<asp:ScriptManager ID="ScriptManager1" runat="server"/> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <Triggers> <asp:AsyncPostBackTrigger ControlID="chkStaySignedIn" EventName="Checked" /> </Triggers> <ContentTemplate> <asp:Label ID="lblPassword" runat="server" Text="Password" AssociatedControlID="txtPassword"/> </ContentTemplate> </asp:UpdatePanel> 

EventName = "Checked" Can someone provide me with a link to a complete list of event names when using ajax.

+4
source share
1 answer

CheckedChanged check box event CheckedChanged

This is not an exhaustive list, but this MSDN page contains default event names for generic controls that are sent back.

+9
source

All Articles