Back button and .Net
I have a good question here and I need some help. No idea if this is possible.
Imagine this scenario: you go from a web page A to a page B by a click.
OK. now I have on the page B some buttons to trigger some decorations changes on the page B, like having the text in three columns, the font size, etc...
But of course, because of the server-side effect, the history include these changes.
So now this is the challenge. How can I use the Back button of the browser and back automatically to the A page and not to the cache version of the modified page B.
I can't think about disable viewstate because I need it to maintain some infos on the page.
Maybe the cache ?!?
My two cents on that will be probably to use the Javascript function History(), but not totally sure about that.
I am sure that this is a task a lot of people would like to be solve.
Any idea?