解决方法
将控件放在更新面板中.请参阅我的示例代码,pnlControls是控件,它将显示弹出窗口中显示的控件:
<asp:Panel ID="pnlControls" runat="server"> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Button ID="TestButton" runat="server" Text="Test Button" onclick="TestButton_Click" /> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label> </ContentTemplate> </asp:UpdatePanel>
这将为你做的工作:)
最好的祝福,Gregor Primar