Hi Bob,
This is not a Visual Studio problem (nor an ASP.NET problem) but an HTML issue.
The GridView is designed to render its header row with <th> tags as opposed to <td> tags to indicate it's an header. A browser, by default, is set up to render <th> tags in bold to distinguish them from data cells.
The fix is easy; just override the behavior for <th> tags in a CSS file, like this:
th
{
font-weight: normal;
}
Merry Christmas,
Imar
---------------------------------------
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Everyone is unique, except for me.
Author of
ASP.NET 2.0 Instant Results and
Beginning Dreamweaver MX / MX 2004
Want to be my colleague? Then check out this post.