Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save loudambiance/94289fdd62ad7f21c445b9f963ac2c31 to your computer and use it in GitHub Desktop.
Save loudambiance/94289fdd62ad7f21c445b9f963ac2c31 to your computer and use it in GitHub Desktop.
this:
<asp:RadioButtonList ID="SexList" runat="server" TextAlign="Left" RepeatDirection="Horizontal" ValidationGroup="BMIValid">
<asp:ListItem Text="Female" value="1"></asp:ListItem>
<asp:ListItem Text="Male" value="2"></asp:ListItem>
</asp:RadioButtonList>
Generates:
<table id="SexList">
<tbody><tr>
<td><label for="SexList_0">Female</label><input id="SexList_0" type="radio" name="SexList" value=""></td>
<td><label for="SexList_1">Male</label><input id="SexList_1" type="radio" name="SexList" value=""></td>
</tr>
</tbody></table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment