Hi
Cannot find the answer to this anywhere!!
my struts app works fine on Firefox and Safari, when I press the back button it pops upa window suggesting that I need to re-post in order to view the previous page (which is the behaviour I want).
IE however gives me a page canot be displayed screen (not even a 404 on tomcat!) found as it is looking for
https://www.mydomain.com:8118/ola/login.do
and not the jsp of the page that was actually the previous page..
I have the following as a header in all the jsps…
<%@ page language=”java” import=”java.util.*” %>
<%
response.setHeader( “Cache-Control”, “no-cache” );
response.setHeader( “Pragma”, “no-cache” );
response.setIntHeader( “Expires”, 0 );
%>
someone please help!!
cheers
N