ラジオボタンを1つだけ選択したいのですが、できません。これが私のコードです:
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1">
<HeaderTemplate>
<table class="tblcolor">
<tr class="rowcolor">
<b>
</b>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr class="tblrowcolors">
<td><%#DataBinder.Eval(Container, "DataItem.QuestionsText")%></td>
<asp:RadioButtonList ID="RadioButtonList1" runat="server" RepeatDirection="Horizontal">
<asp:ListItem selected="true"> 1</asp:ListItem>
<asp:ListItem> 2</asp:ListItem>
<asp:ListItem> 3</asp:ListItem>
<asp:ListItem> 4</asp:ListItem>
<asp:ListItem> 5</asp:ListItem>
</asp:RadioButtonList>
</tr>
</ItemTemplate>
問題を調査したところ、「ASP.NET Repeater のバグです」と表示され、いくつかの記事をたどったところ、jquery を記述して修正する必要があるとのことです !! 残念ながら、私は初心者の Web 開発者であり、jQuery の経験はあまりありません!! 事前に感謝します