tektipster79
Programmer
I have some data that I am "pivoting" and storing in a DataTable. The original subset of data needs to be filtered various ways, then pivoted and bound to a GridView. The data is display only, I don't need to allow for editing, etc. I want to make sure that I'm not creating copies of DataTables all over the place for the different users who are coming to the site. Should I
store the original DataSet in an Application variable and then create the DataTables off of that? I don't want to be hitting the database all the time since this data really doesn't change.
store the original DataSet in an Application variable and then create the DataTables off of that? I don't want to be hitting the database all the time since this data really doesn't change.