
how can we clear browser cache?

Put the given code in your jsp:
<% response.setHeader("Cache-Control","no-cache"); //HTTP 1.1
response.setHeader("Pragma","no-cache"); //HTTP 1.0
response.setDateHeader ("Expires", 0);
%>

In the
section add meta tag:<meta http-equiv="pragma" content="no-cache" />

Thanks Alot
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.