关于如何创建带有用户输入自由文本选项的单选按钮列表的任何建议?
这是我要寻找的快速示例:
- 红色的
- 蓝色的
- 绿
- 其他(文本框会放在这里)
您可以只有一个单选按钮列表,然后在事件设置中选择其他时启用文本框,否则如果它不是其他按钮则禁用它。
看一下
像这样的东西
<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>