Click to See Complete Forum and Search --> : DataGridView and site wide navigation


Sava
05-29-2006, 02:33 PM
I have a datagridview on my home.aspx page and all my following pages are details of the listing in my gridview.
On my "master page" I have navigation buttons and want to be able to load the detail pages according to the rows/records on the first page. My source for the gridview is a collection of data-items.
I would like to avoid reloading the complete collection each time the user goes to another detail page.
I was thinking loading the "datakeynames" in an array and have it in session state, but I am not sure if this is the right approach.
Can anyone give me a push in the right direction. This is my first time handling navigation and I am not sure where to start.
Thank you
Sava :confused:

handshakeit
05-30-2006, 04:12 AM
if(! IsPostBack)
{
//Here load collection of data-items
}