I have a page (Page1) that Redirects to either itself (with different data) or to another page (Page2).
I am using a Stack to keep track of where user is.
This mostly works.
When user presses Back button on browser, Page1 reloads with its last known data - this is correct.
However, Back button is no longer available.
What can I do to give the user the option to continue back through the stack?
Here is the sequence:
Page1 loads with data1. User presses a button.
Page1 redirects to itself loading data2. User presses a button.
Page1 redirects to Page2 which loads data3. User presses BACK button.
Page1 loads using data2. This is correct. Here is where BACK button is no loger available. I would like the user to be able to return to Page1 with data1.
Help is most appreciated.
Go to the complete details ...