I have a GridView with BoundColumns. The first 2 columns are hidden and I would like to access them using gridView1.Rows[0].Cells[0].Text and gridView1.Rows[0].Cells[1].Text respectively and I get a empty string. When the columns are changed to visible, then I can access the values. I have tried changing the column width to zero as suggested on some other forums but that never fixed the problem. Does any one have any pointers as to what I may be doing wrong.
|
feedback
|
|
If the Columns are part of the If however, they are not part of the
| |||
|
feedback
|
|
This is typical behaviour in ASP.NET, Visible = false, only makes the control available in code-behind. The best for this would be to apply the following style on that column:
| |||||
feedback
|
|
I like using the method leppie said to use. Add the css class hiddencol to the column you want to hide. Add hiddencol class to your css. And your good to go, you can still access the column in your code behind but it isn't displayed on your page.
| |||
|
feedback
|