我有一種形式來保存客戶details.For我已經使用updatepanel & formview。此外,我使用modalpopupextender在該窗體中的圖像按鈕的Click事件中打開彈出窗口。但是,當我使用modalpopupextender然後我不能保存我的客戶的詳細信息,而不使用modalpopupextender我可以保存客戶的詳細信息。對於我已經添加的代碼如下,但它給錯誤的"An extender can't be in a different UpdatePanel than the control it extends."
:在asp.net中的AJAX ModalPopupExtender問題c#
<asp:ImageButton ID="imb1"
Text="Refresh Panel"
runat="server" />
<asp:ScriptManager ID="ScriptManager1"
runat="server" />
<asp:UpdatePanel ID="UpdatePanel1"
UpdateMode="Conditional"
runat="server">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="imb1" />
</Triggers>
<ContentTemplate>
// Here is my code to add
</ContentTemplate>
</asp:UpdatePanel>
請幫我該怎麼辦? Asp.net C#