Click here to Skip to main content
15,887,477 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I hav a button inside the Ajax popupextender.When We click the Button ,the button is not firing. Here is my Code
ASP.NET
  <ajax:ToolkitScriptManager ID="ajaxTool" runat="server">
</ajax:ToolkitScriptManager>
   <ajax:ModalPopupExtender ID="popupForPwd" runat="server" PopupControlID="pnlforPwd" BehaviorID="brnSubmitEmail" Enabled="true" DropShadow="true" TargetControlID="lnkForgot" PopupDragHandleControlID="popupheader" BackgroundCssClass="popup" CancelControlID="btnCanel"></ajax:ModalPopupExtender>
   <asp:Panel ID="pnlforPwd" runat="server" align="center" BackColor="Blue" Width="500px" Height="500px" CssClass="pnlpopo">
   <table>
   <asp:Label ID="lblEmail" runat="server" Text="Email"></asp:Label>
   <asp:TextBox ID="txtEmail" runat="server"></asp:TextBox>
   </table>
   <asp:Button ID="brnSubmitEmail" runat="server" Text="Submit" onclick="brnSubmitEmail_Click" />
 <asp:Button ID="btnCanel" runat="server" Text="Cancel" />
 <asp:Label ID="lblmail" runat="server"></asp:Label>
   </asp:Panel>


What I have tried:

I tried the above code .But the button is Not firing.
Posted
Updated 25-Dec-16 23:04pm
v3
Comments
Kornfeld Eliyahu Peter 25-Dec-16 3:37am    
Where is the server side code?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900