====== t foot and thead in gridview ====== private void MakeAccessible(GridView grid) { if (grid.Rows.Count > 0) { //This replaces with and adds the scope attribute grid.UseAccessibleHeader = true; //This will add the and elements grid.HeaderRow.TableSection = TableRowSection.TableHeader; //This adds the element. Remove if you don't have a footer row grid.FooterRow.TableSection = TableRowSection.TableFooter; } }