views:

192

answers:

1
<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 anyone provide me a link to complete list of event names while using ajax.

+3  A: 

The checkbox's event name is CheckedChanged

It isn't a definitive list by any means, but this MSDN page lists the default event names for common controls that post back.

Phil Jenkins
Are there any other events also that are supported by event name property ?Is it there any other method also to get event name within VS
Shantanu Gupta