On an ASP.NET page, I have a GridView populated with the results of a LINQ query. I’m setting the DataSource in code, then calling DataBind on it. In the GridView’s RowDataBound event, I’m selectively hiding links in some GridView fields based on the query results. (For instance, I hide the ‘Show Parent’ link of the row in question has no parent row.)
This works fine initially. But on postback (when I don’t call DataBind, but the GridView stays populated through ViewState), the data displays, but the RowDataBound event (obviously) doesn’t fire, and my links don’t get hidden.
What’s the best way to get the links to be hidden after a postback?
Here’s how I ended up solving this:
LinkVisibility.LinkVisibilityinstance to the collection for each row.LinkVisibilityfor each one by PK in the collection (DataKeyNames is set in the GridView), and I set the links accordingly.I don’t know that this is the best way to do this, but it certainly does work, which is more than I can say for anything else I’ve tried.