Click here to Skip to main content
15,891,607 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello i am using "mvc2 View User Control" in which i wan to set caption fore color and underline for specific column of gridview so how can i do this??

C#
settings.Columns.Add(column =>
           {
               column.FieldName = "fieldname";
               column.Settings.AutoFilterCondition = AutoFilterCondition.Contains;
               column.Caption = "Fieldname";
               column.Width = Unit.Pixel(70);
           });

i want to display this caption with color and underline so any idea please help me...

thank you.
Posted
Updated 5-Dec-12 22:44pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900