How do I get the
I use this in GridView
control to render the
tags? I know
.UseAccessibleHeaders
makes it p
OnRowDataBound
event:protected void GridViewResults_OnRowDataBound(object sender, GridViewRowEventArgs e) {
if (e.Row.RowType == DataControlRowType.Header) {
e.Row.TableSection = TableRowSection.TableHeader;
}
}