Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

Cannot reference non-visible cell value in gridview but it works in datagrid

4.00/5 (1 vote)
6 Jan 2011CPOL 9.8K  
Difference of non-visible cell between DataGrid and Gridview

I found one interesting thing that I just want to share with you all.

There is one difference between DataGrid and Gridview. During my .NET Fx 1.1 time, I set the column visibility to false and still access that column through my code behind using code like e.cells[0].Text like that.

Now if you do the same thing with Gridview, it would return blank instead of value. Strange!!!

The reason I found after binging (because I like Microsoft :) ).

Basically, Microsoft has decided that hidden columns in DataGrid were almost always used to store primary keys of records, and that maintaining them in ViewState represented a security risk. Therefore, in the GridView object introduced in Fx 2.0, hidden columns have been removed from ViewState by default, which is why the columns themselves are still there(otherwise you couldn’t reference them in the CodeFile), but their values are blank.

The work around for Gridview is to use following way…

C#
grdObject.DataSource = <datasource>;
grdObject.Columns[0].Visible = true;
grdObject.DataBind();
grdObject.Columns[0].Visible = false
or you can take HTML hiddenfield and make it runat=server and set the value using EVAL. Then you can reference this control from code-behind.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)