How to Clear browser Cache History in JSP?

Just add following line on the top of the JSP page.(Page details
information is clear form Browser Cache)

JSP Code:-

response.addHeader("Cache-Control", "max-age = 0, s-maxage = 0,must-revalidate, proxy-revalidate, no-cache, no-store ");
response.addHeader("Pragma", "no-cache");

Comments

Post a Comment

Popular posts from this blog

Few tips for Linux User related to MAN page

SEND Mail Using JAVA Mail API