When user logout's of the application and click on the back button in chrome brower then user will be viewing the "Confirm Form Resubmission" instead of the login page of the application. The same behaviour is not visible in the internet explorer.
After succesful logout i.e, clearing the session of application and in Jsp we are adding the below line
<%response.setContentType("text/html; charset=iso-8859-1");
response.setHeader("Cache-Control", "no-cache, no-store, must-revalidate");
response.setHeader("Pragma", "no-cache");
response.setHeader("Expires","0");
%>
if the user click the refresh in Confirm Form Resubmission page then he will navigate to the home page.
i have tried to implement a session variable username and check the variable in the jsp. since we are clearing the cache there is no jsp page to load.
Any solution to the issue will be appreciated.