admin
  • admin
  • 100% (Exalted)
  • Administration Topic Starter
a year ago
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        // Ẩn cột thứ 2 trong GridView
        e.Row.Cells[1].Visible = false;
    }
}