Hi,
I have this in my JSF page.
<head>
<%
response.setHeader("Cache-Control", "no-cache"); // Prevents HTTP 1.1 caching.
response.setHeader("Pragma", "no-cache"); // Prevents HTTP 1.0 caching.
response.setDateHeader("Expires", -1); // Prevents proxy caching.
%>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta name="GENERATOR" content="Rational Application Developer">
</head>
Whenever, I hit on refresh button on both IE and FF browser it creates a new application ... which should not happen.
Is there anything else that Iam missing??
Please do help me.
Thanks.