Reputation: 438
I developed a gridview by following this tutorial but i want to change it's css, can someone point me to right direction please,
Here's a little bit of markup
<asp:GridView ID="GridView1"
runat="server"
DataKeyNames="CustomerID" AutoGenerateColumns="false"
OnRowDataBound="gv_RowDataBound" Width="80%"
AllowPaging="True" PageSize="20" cssClass="myclass" />
I added a css class but not sure what will go in class so that I make my gridview attractive,
Upvotes: 1
Views: 1319
Reputation: 747
Please check below codeproject link. This may help you.
Add some style to your datagrids
Upvotes: 2
Reputation: 4550
You can use the this : http://msdn.microsoft.com/en-us/library/aa479342.aspx . Skin is easy to maintain and change
Upvotes: 0