In the application am working when the user logs out and press the browser back button it takes the particular user to the previous page(logged in as the previous user).
I tried the following code to clear the cache when the user logs out in the index(login) page
<%
response.setHeader("Pragma", "no-cache");
response.setHeader("Cache-Control", "no-store");
response.setHeader("Expires", "0");
response.setDateHeader("Expires", -1);
%>
The above code works fine in IE and firefox but not in google chrome ,
can any one helps me in solving this issue with google chrome .
Thanks in advance .