Posted on: 5/26/2011 1:08:56 AM | Views : 629

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 ...