【发布时间】:2011-05-08 06:31:46
【问题描述】:
我正在使用 ASP.NET,其中我使用 Ajaxcontroltoolkit 和“更新面板”控件来更新页面的一部分。
当我第一次运行程序时它工作正常,但从第二次开始“更新面板”控件不起作用。我可以提供更多详细信息,知道是什么问题吗?
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<table border="1" id="tbRegistration" style="font-family: Calibri" width="800px">
<tr>
<td style="width: 33%" align="center">
<asp:RadioButton ID="rbIndividual" runat="server" OnCheckedChanged="RadioButton_CheckedChanged"
Text="Individual" GroupName="Profile" AutoPostBack="true" />
</td>
<td style="width: 33%" align="center">
<asp:RadioButton ID="rbAgent" runat="server" OnCheckedChanged="RadioButton_CheckedChanged"
Text="Agent" GroupName="Profile" AutoPostBack="true" />
</td>
<td style="width: 33%" align="center">
<asp:RadioButton ID="rbBuilder" runat="server" OnCheckedChanged="RadioButton_CheckedChanged"
Text="Builder" GroupName="Profile" AutoPostBack="true" />
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel>
【问题讨论】:
-
是的,我的意思是这样,我添加了代码 sn-p 请检查。我不能接受那些不能解决我的问题的答案。