There's always JavaScript.  When the jsp page loads try doing this:

        <SCRIPT LANGUAGE="JavaScript">
          function doFunc() {
            location.reload(true);
          }
        </SCRIPT>

        Then add this to your body tag:

        <BODY onLoad="doFunc()">

        It's messy.  There may be other ways but this one works.  The
"reload(true)" forces the browser to load the page from the source and not use
any cached page.  I know it works for Netscape.  Not too sure about IE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Joshua Prunier
Work E-mail: [EMAIL PROTECTED]
Home E-Mail: [EMAIL PROTECTED]
Work Phone: 781.442.2298
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to