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; } }