Hi Everyone,
Any suggestions on how I would create a radio button list with an option for the user to input free text?
Here's a quick sample of what i'd be looking for:
- Red
- Blue
- Green
- Other (textbox would go here)
Hi Everyone,
Any suggestions on how I would create a radio button list with an option for the user to input free text?
Here's a quick sample of what i'd be looking for:
You could just have a Radio Button list and then when Other is selected in the event set the text box enabled otherwise disable it if it isn't the Other button.
Have a look at
Something like this
<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>