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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
This should do it...
|
|||||||
|
|
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. |
|||||||
|
|
create a function and use that function in your page load Event like this it's below Create Function
Page Load protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { MakeGridViewPrinterFriendly(grddata); }
|
|||
|
|