gpt4 book ai didi

c# - 如何创建一个 RadioButtonList,其中每个单选按钮都在单独的表格行中?

转载 作者:行者123 更新时间:2023-11-30 18:32:24 25 4
gpt4 key购买 nike

我正在创建一个 MCQ 问答界面,我需要将每个单选选项放在答案旁边的单独行中,以便用户可以选择答案,我知道在正常情况下在单行中使用单选按钮列表方式,

 <asp:RadioButtonList ID="opt_questiontype" runat="server" RepeatLayout="Flow" OnClick="call()">
<asp:ListItem Value="MCQ" Selected="True">MCQ</asp:ListItem>
<asp:ListItem Value="Single">Single Answer</asp:ListItem>
</asp:RadioButtonList>

但在这里我需要将它们逐行放置在 html 表中,如下所示,

<table id="mcqtable">
<tr style="border-bottom-style:solid; border-bottom-width:1px; border-bottom-color:#CCCCCC;">
<th class="captions2">Option</th><th class="captions2">Answer Text</th><th class="captions2">Is Correct</th>
</tr>
<tr>
<td class="captions1">Answer Option 1</td><td><asp:TextBox ID="txt_answeropt1" runat="server" TextMode="SingleLine" Width="600px"></asp:TextBox></td><td><asp:RadioButton ID="opt_answer1" runat="server" GroupName="grp_answers" Checked="true" /></td>
</tr>
<tr>
<td class="captions1">Answer Option 2</td><td><asp:TextBox ID="txt_answeropt2" runat="server" TextMode="SingleLine" Width="600px"></asp:TextBox></td><td><asp:RadioButton ID="opt_answer2" runat="server" GroupName="grp_answers" /></td>
</tr>
<tr>
<td class="captions1">Answer Option 3</td><td><asp:TextBox ID="txt_answeropt3" runat="server" TextMode="SingleLine" Width="600px"></asp:TextBox></td><td><asp:RadioButton ID="opt_answer3" runat="server" GroupName="grp_answers" /></td>
</tr>
<tr>
<td class="captions1">Answer Option 4</td><td><asp:TextBox ID="txt_answeropt4" runat="server" TextMode="SingleLine" Width="600px"></asp:TextBox></td><td><asp:RadioButton ID="opt_answer4" runat="server" GroupName="grp_answers" /></td>
</tr>

</table>

我在这里使用了普通的单选按钮,但是在获取选定值时发生冲突,所以请任何人提出一种使用 asp:RadioButtonList 来完成此任务的方法?

最佳答案

here I have used normal radiobuttons, but there is a conflict when getting the selected value

什么是冲突?为什么要在这里使用 RAdioButtonList?您现有的代码没有向我显示任何冲突。

关于c# - 如何创建一个 RadioButtonList,其中每个单选按钮都在单独的表格行中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18712038/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com