D
DJ Dev
Basically, I have a web app which has a step-by-step flow. So the user
fills a form, hits next and is taken to the next page, where the user
enters more information in form. There are around 5 steps for the user
to complete. Each step is on a different page.
The problem is that at any point the user should be able to go back
and see what he has filled in the previous screens.
How should this be achieved? Should I cache (at client?) the pages
completed by the user, so when the user hits the browser back button,
the pages with data is visible.
OR
Should I cache the viewstate of all the pages and check on every page
- if Viewstate Cache for that page exist, then get everything from
ViewState.
OR
There s any other recommender solution!!!!
Thanks
fills a form, hits next and is taken to the next page, where the user
enters more information in form. There are around 5 steps for the user
to complete. Each step is on a different page.
The problem is that at any point the user should be able to go back
and see what he has filled in the previous screens.
How should this be achieved? Should I cache (at client?) the pages
completed by the user, so when the user hits the browser back button,
the pages with data is visible.
OR
Should I cache the viewstate of all the pages and check on every page
- if Viewstate Cache for that page exist, then get everything from
ViewState.
OR
There s any other recommender solution!!!!
Thanks