RadioButtonList Formatting

  • Thread starter Thread starter Steven K
  • Start date Start date
S

Steven K

Hello,

Currently I am using RadioButtons for the following. However, I would like
to use the RadioButtonList. My problem is I need to have each RadioButton
in its own cell. My question is how do you format each itemlist for the
RadioButtonList? Thanks in advance, Steven

<tr>
<td width="10"><div align="center</div></td>
<td width="290" class="BlkM08">Did the Sessions provide value?</td>
<td width="30"><div align="center">
<asp:RadioButton id="radiobutton010NA" runat="server"
Text="&nbsp;"
TextAlign="left"
GroupName="radiobutton010"
Checked="False"/></div></td>

<td width="30"><div align="center">
<asp:RadioButton id="radiobutton010No" runat="server"
Text="&nbsp;"
TextAlign="Right"
GroupName="radiobutton010"
Checked="False"/></div></td>
</tr>
 
Back
Top