Am having 2 panels.. each will be poped after clicking 2 linkbuttons...and viewed through modal popup extender. Problem is having 2
buttons first button event is triggerd and it goes to breakpoint but second panel button event is not raised .....any one suggest how to do it. See the design below.
<asp:Panel ID="pnlorder" BackColor="GrayText" ForeColor="White" CssClass="modalPopup"
runat="server" Height="450px" Width="750px" ScrollBars="Vertical">
<asp:UpdatePanel ID="UpdatePanel3" runat="server">
<ContentTemplate>
<table>
<tr>
<td>
<asp:Button ID="btn_saveorder" runat="server" Width="75px" CssClass="Button" Text="SAVE"
OnClick="btn_saveorder_Click" />
</td>
</tr>
</table>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="btn_saveorder" />
</Triggers>
</asp:UpdatePanel>
</asp:Panel>
<asp:Panel ID="pnlcallback" runat="server" BackColor="GrayText" CssClass="modalPopup"
Height="250px" Width="550px" ScrollBars="Vertical">
<asp:ImageButton ID="btnclose" runat="server" ToolTip="Close" ImageUrl="~/images 1.jpg"
Height="23px" Width="19px" />
<asp:UpdatePanel ID="UpdatePanel2" runat="server">
<ContentTemplate>
<table>
<tr>
<td align="right" colspan="3">
<asp:Button ID="btnsaveCB" runat="server" Width="60px" CssClass="Button" Text="SAVE"
OnClick="btnsaveCB_Click" />
</td>
</tr>
</table>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="btnsaveCB" />
</Triggers>
</asp:UpdatePanel>
</asp:Panel>
Thanks SABARINATHAN87