From this thread (
http://saloon.javaranch.com/cgi-bin/...&f=50&t=012693), Scott Johnson provides the answer:
"Adding this code to your jsp will cause most browsers to not cache the response:
code:
--------------------------------------------------------------------------------
<%
response.setHeader("Pragma","no-cache"); // HTTP 1.0
response.setHeader("Cache-Control","no-store"); // HTTP 1.1
response.setDateHeader("Expires", 0);
%>
--------------------------------------------------------------------------------
See the spec (
http://www.w3.org/Protocols/rfc2616/...4.html#sec14.9) for more info.
Jon Emerson
http://www.jonemerson.net/