Having trouble styling my radio button.
When I compile and check the code with Firebug, something unusual happens.
Code snippet:
<asp:RadioButton ID="selType1" GroupName="Type" runat="server" CssClass="radioB" Checked="true" />
Firebug result:
<span class="radioB">
<input id="ctl00_ctl00_BodyContentHolder_TestController_1_selType1" name="ctl00$ctl00$BodyContentHolder$TestController_1$Type" value="selType1"` checked="checked" type="radio">
It seems that the SPAN tag is getting the class name instead of the INPUT tag.
Any idea why this might be happening?
Thanks, Marthin