I am binding a GridView using a DataSource in asp.net, and i would like to have some hidden BoundFields so I can access those values in my RowDataBound Function. However, when I set Visible="False" on these BoundFields the values do not get set and are always blank in the RowDataBound function.
Is there a way to do this? I've seen some suggestions of setting the style on the BoundField to hidden but this did not work for me either. Ideally I don't even want a column created in the gridview, I just want these values to be hidden so I can access them. Thanks!
e.Row.DataItem. A second option would be to use invisible TemplateFields. – Tim Schmelter Feb 11 '11 at 22:07Visible="True", right? I'm not sure why the BoundField wouldn't still be accessible. – Justin Morgan Feb 11 '11 at 22:12