我在我的页面中使用了RadioButtonList。我也在这个页面上使用了updatepanel。我的问题是RadionButtonList在页面加载时只显示项目名称没有圆形单击。它会在点击页面中的任何一个控件之后显示圆形,表示在回发之后。这个RadiobuttonList我在另一个页面中使用但是它正常工作。
我的代码如下:
<form id="form1" runat="server">
<ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
</ajaxToolkit:ToolkitScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server"><ContentTemplate>
<fieldset>
<table class="ui-accordion" >
<tr>
<td align="left" colspan="2"class="style2">
<asp:RadioButtonList ID="RbSelection" style="margin-left:120px;" runat="server" RepeatDirection="Horizontal" CellPadding="12" CellSpacing="1" onselectedindexchanged="RbSelection_SelectedIndexChanged" AutoPostBack="True">
<asp:ListItem Value="1">Department</asp:ListItem>
<asp:ListItem Value="2">Section</asp:ListItem>
</asp:RadioButtonList>
</td>
</tr>
</table>
</fieldset>
</ContentTemplate>
</asp:UpdatePanel>
</form>