Hi,

I've created an ASP.Net page complete with a datagrid.

The data is loaded into the grid via a dataset (containing all the requested data).

My problem is that I wish to only declare an object (the one that holds the dataset) once when the page is loaded.

Unfortunately, wherever the object is declared, when the page reloads it re-declares the object, so destroying any data.

I don't wish to reload the dataset each time I want to use the pager (causing page reload). Is there any way to do this, other than only loading a page at a time into the dataset????

Many thanks in advance...

Rob