basicly there are 2 ways. one is html-based the other http-based. (ok, at
the end both affect the header in some way...)
you could simply add the following to every jsp/html page
<html>
        <head>
                <meta http-equiv="Pragma" content="no-cache">
        </head>
</html>

or (what i would recommend) add the following line to your jsp-code:
<%
        response.setHeader ("Pragma", "no-cache");
%>
you could simply put this (together with other common code) into one
include...

hope this helps,
pero

-----Original Message-----
From: Dan Silva [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 10, 2001 6:08 PM
To: [EMAIL PROTECTED]
Subject: Question


I am using Tomcat as both web server and app server.

How do I get my JSP pages to load from the web server and not from a
client-side cache everytime they are hit?

- - -
Dan Silva
Java Developer
HcPersonal, Inc.
[EMAIL PROTECTED]


Reply via email to