Hi
I am looking at entry within an aspx file, and it contains an element with a Validation ASP.NET warning:
"Attribute 'CssClass' is not a valid attribute of element 'ListItem'"
Here is a ASP.NET 4 code in question:
<asp:radiobuttonlist id="HealthRBL" runat="server" AutoPostBack="False" RepeatLayout="Flow" RepeatColumns="2">
<asp:ListItem Value="Yes" CssClass="radio yes">Yes</asp:ListItem>
<asp:ListItem Value="No" CssClass="radio">No</asp:ListItem>
</asp:radiobuttonlist>
What is the proper way in providing direct CSS styling (classes) to a ListItem?
Thanks
...
Go to the complete details ...