I have a gridview that uses autogenerated columns, because the user can select the columns to return in a query. I want to hide the column with the identity. How do I hide the autogenerated column? Even in the databound event the columns count is zero.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I discovered how to do this. You need to use the rowdatabound event and hide the cell when the row is bound.
|
|||||
|
|
||||
|
|
|
I'd check the column was greater than zero, if so then I'd use the fact that the column collection can be referenced by column name as well as integer to set the identity column to hidden. |
|||
|
Do you need it? The simplest thing would be to not include it in the select query. If you need it and know the column position:
|
|||