I do not have this problem in other popular browsers. On the JSP page (call Page1.jsp), I will click on the form that will go to another page. When I click the Opera Back button, it returns to the .jsp page, but the JavaScript or JSP code is not updated. For instance,
<!-- Inside header tag -->
<script language="JavaScript>
alert("Does this work in Opera?");
</script>
A simple warning instruction does not work. The same goes for server code. However, other popular desktop browsers have no problems.
How can i fix this?
Thanks for any help.
Update
I had to say - and I apologize for this - this Page1.jsp file contains the frame / iframe in which the submit form lives. When the user submits the form, he loads a new page inside the frame / iframe. At this point, when the user presses the browser button back, I see that Page1.jsp is cached, but the frame / iframe is reloading. This happens in all popular browsers except Opera.
source
share