radiobuttonlist formatting

  • Thread starter Thread starter Mike P
  • Start date Start date
M

Mike P

How do I manage to format a radiobuttonlist so that if for example I
have 3 options, I can put a text box to the right of each option? The
radiobutton list doesn't seem to accept any html inbetween it which I
would normally use for formatting (TR, TD etc).

Any assistance would be much appreciated.


Cheers,

Mike
 
i think i accomplished what you want with the following:

<asp:RadioButtonList id="RadioButtonList1" runat="server">
<asp:ListItem Value="1">Item 1 <input
type=text></asp:ListItem>
<asp:ListItem Value="2">Item 2 <input
type=text></asp:ListItem>
</asp:RadioButtonList>

hope that helps,
 
Back
Top