我使用的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>
提供一些代碼,請.. – 2011-05-08 06:44:32
是我的意思所以我添加了代碼片段請檢查。我無法接受那些不能解決我問題的答案。 – 2011-05-08 16:33:02