How do I get the GridView control to render the <thead> <tbody> tags? I know .UseAccessibleHeaders makes it put <th> instead of <td>, but I cant get the <thead> to appear.
GridView
<thead>
<tbody>
.UseAccessibleHeaders
<th>
<td>
This should do it:
gv.HeaderRow.TableSection = TableRowSection.TableHeader;
1.4m articles
1.4m replys
5 comments
57.0k users