I'm sure this is a stupid question, but I still need the answer.
I want to be able to populate a DataSet the first time an aspx page loads and have that DataSet available for future loads.
Declaring the DataSet as static won't work because, as I've mentioned in another thread, static makes the variable shared between all sessions, so each session will not have a unique copy of the DataSet.
Any ideas?