posted 19 years ago
This is one of the consequences of instructing the browser not to cache the page. I expect somewhere in your page you have something similar to the following:
When the user hits the back button, the browser gets the page from it's cache: it doesn't go to the server. One way to avoid this message would be to allow the browser to cache the page, but that might cause other unwanted side effects. Many websites simply accept this message, and hope users will learn not to use the back button. Go to your online banking website, and chances are you'll get this message if you hit the back button. One solution is to use javaScript to disable the back button.
Good luck.