When I add ListItems to a RadioButtonList in code-behind, the labels are rendered after the input and placed inside a TD by ASP.NET.
<td>
<input type='radio' id='site123' name='groupname' value='123' />
<label for = 'site123'>this is a long label that wraps</label>
</td>
Is there a way to control how ASP.NET renders the markup, either selectively or globally? I'd like to have the input inside the label:
<label><input .... /> </label>