Hi himanshu1979,
<jsp:farward> is compulsary
String destination;
/* construct your destination url as you like */
this.getServletContext().getRequestDispatcher(destination).forward(request,
response);
Browser is showing ur jsp from the cache.
So you can instruct the browser not to do that by using
<code>
response.setHeader("Expires","0");
</code>
or
<code>
response.setHeader("Pragme","no-cache");
</code>
Regards,
Tirumalarao
Developer TechnicalSupport,
Sun MicroSystem,India.