有关如何创建单选按钮列表以及用户输入自由文本选项的任何建议吗?
以下是我正在寻找的快速示例:
答案 0 :(得分:1)
您可以只有一个单选按钮列表,然后在事件集中选择其他时启用文本框,否则如果它不是其他按钮则禁用它。
答案 1 :(得分:0)
看看
像这样的东西
<asp:RadioButtonList ID="rdo" Runat="server">
<asp:ListItem>First</asp:ListItem>
<asp:ListItem>Second</asp:ListItem>
<asp:ListItem>Others <input type="text" name="txtOthers"></asp:ListItem>
</asp:RadioButtonList>