//hide header column GridView1.HeaderRow.Cells[0].Visible = false; //hide column in data rows foreach (GridViewRow row in GridView1.Rows) { row.Cells[0].Visible = false; }
Related posts
Add comment