What I have:
I have a GridView without paging. In the Page_Load handler of the containing Page I read user specific values from a table storage and store them in a collection so the SelectMethod of the ObjectDataSource can get them.
What I want:
When the user uploads some new data from the same page the GridView is in I want the GridView to show the new data additionally to the old one without querying the storage again.
Helpful stuff:
IsPostback within the Page_Load handler helps avoiding queries when the data is still in the ViewState. After the user clicked the upload button he can still see the old data thanks to the ViewState of the GridView I guess.
My attempt:
I tried to derive from GridView and make my own user control in order to have access to the ViewState Property that returns a StateBag but it cannot find the user data that is displayed in it. It shows only stuff like DataSourceID, _!ItemCount and so on.
My Question:
How to access ViewState from a GridView in order to retrieve data like the column values or the DataKeyName values from code behind.
Additional info:
The answer to the question does gridview save data in viewstate? states that the GridView saves its data in its ViewState.