Maintaining Page State between different pages

P

Paul Say

This is the case I have several pages that together allow the user to drill
down, eg Jobs,Sub Job, Task

On the Job, the job details are displayed in a datagrid which the user can
sort,page through, filter and select an active row.(each other page has the
same functionality). What I want to know is what would be the best practice
to retain the state of the datagrid as in the filter and selected row etc,
when returning from the drill down. Currently I am passing all variables
through a query string, storing them in the child pages state and then
including them in the return query string.... Is there a better method???


Thanks
 
S

Steve C. Orr [MVP, MCSD]

I agree with Bill that session state would likely be the best way.
You might also consider cookies.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top