You can tell the browser not to ever cache the output of your jsp (in
effecting forcing it to refresh each time it is loaded) by inserting this
code at the top of your jsp:
 <%
 response.setHeader("Cache-Control","no-store"); file://HTTP <file://HTTP>
1.1
 response.setHeader("Pragma","no-cache"); file://HTTP <file://HTTP>  1.0
 response.setDateHeader ("Expires", 0); file://prevents <file://prevents>
caching at the proxy server
%>



Clark D. Richey, Jr.
Software Engineer
Edge Technologies, Inc.
301-483-6900 Ext. 40

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to