Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

up vote 51 down vote accepted

This should do it...

gv.HeaderRow.TableSection = TableRowSection.TableHeader;
share|improve this answer
I just found that and was about to answer myself, thanks anyway, spot on :) – Andrew Bullock Nov 21 '08 at 15:35
21  
The HeaderRow property will be null until the GridView has been data bound, so make sure to wait until databinding has occurred before running the above line of code. – bdukes Jul 17 '09 at 14:47

The code in the answer needs to go in Page_Load or GridView_PreRender. I put it in a method that was called after Page_Load and got a NullReferenceException.

share|improve this answer
3  
You can also put in DataBound event. grid.DataBound += (s, e) => { grid.HeaderRow.TableSection = TableRowSection.TableHeader; }; – BrunoLM Aug 12 '10 at 11:53
Don't know if this is different in .NET 4.5 now... but I am getting the HeaderRow being null in both _DataBound and _PreRender event handlers. This might be related to the fact I am using ASP.NET Web Forms new "Model Binding" feature in the gridView. – ClearCloud8 Oct 19 '12 at 18:53

create a function and use that function in your page load Event like this it's below

Create Function

private void MakeGridViewPrinterFriendly(GridView gridView) {  
    if (gridView.Rows.Count > 0) {          
        gridView.UseAccessibleHeader = true;  
        gridView.HeaderRow.TableSection = TableRowSection.TableHeader;  
    }  
} 

Page Load

protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { MakeGridViewPrinterFriendly(grddata); }

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.