Column name

  • Thread starter Thread starter bbawa1
  • Start date Start date
B

bbawa1

Hi,

I have a grid view I am trying to invisible the fifth column. The
rows are now not showing any data in column but the column name is
still showing. I want to make invisible column name also.

if (e.Row.RowType == DataControlRowType.DataRow )
{
e.Row.Cells[5].Visible = false;
}
 
I have a grid view I am trying to invisible the fifth column. The
rows are now not showing any data in column but the column name is
still showing. I want to make invisible column name also.

if (e.Row.RowType == DataControlRowType.DataRow )
{
e.Row.Cells[5].Visible = false;
}

MyGridView.Columns[5].Visible = false;
 
Back
Top