I have the following ASP.Net check box control added to a page:
<asp:CheckBox ID="chkActive" runat="server" CssClass="myClass" />
But when the page gets rendered it ignores the value of the CssClass property:
<input name="ctl00$mainContent$chkActive" id="ctl00_mainContent_chkActive" type="checkbox" value="on"/>
Any ideas how to apply the css class to the ASP.Net check box?
Thanks Alan.