ASP.Net WebForms / C# Hide GridView Column on server-side - 03.06.18 | 22.11.19 - ErcanOPAK protected void GridView_RowDataBound(object sender, GridViewRowEventArgs e) { e.Row.Cells[index].Visible = false; } Related posts:How to lock the ciritical code part in C#How to use TrimEnd to remove last character from string in C#What is the difference between “int” and “uint” / “long” and “ulong”?How to solve 'Size property has an invalid size of 0' in C# Post Views: 166