D
Dave
The HTML generated by the RadioButtonList contains a table structure as:
<table id="rbList1" border="0">
<tr>
<td>rb1</td><td>rb2</td><td>rb3</td>
</tr>
</table>
If I create a custom control inherited from the RadioButtonList, can modify
the table (including <td>) elements before it's rendered? I want to add style
attributes to the <td> in order to have equal spacing between the
radiobuttons when displayed horizontally?
Dave.
<table id="rbList1" border="0">
<tr>
<td>rb1</td><td>rb2</td><td>rb3</td>
</tr>
</table>
If I create a custom control inherited from the RadioButtonList, can modify
the table (including <td>) elements before it's rendered? I want to add style
attributes to the <td> in order to have equal spacing between the
radiobuttons when displayed horizontally?
Dave.