Understand that the subject should be discussed before. But as I haven’t found the proper link explaining which approach is supposed to be implemented for my specific issue, will ask you one more time.
I have a big plenty of users that have access to some wizard where they can go through web pages. At first time they are supposed to change some default settings on the first page. And then choose next link. Every next time if they already updated settings they should get the second page directly (but from here they still have a link to the previous first page). The question is how the necessary information have to be stored and where.
- Can use cookies and each time depending on the value redirect a user using a jquery script
(understand that nobody guarantee correct work for all clients) - Can save the value somewhere in an application context
- Can store this state to database
Which one to choose?
Let’s say you have
SettingsNstructure for each page, than you can store each structure inRequest.Sessionon postback. This will allow you to check which page is filled out and to have this data on server while user is in process.