| Author |
History
|
Jeff Bergan
Greenhorn
Joined: Jul 01, 2000
Posts: 13
|
|
How do I prevent my JSP pages from being cached in the history folder? Thanks for any help
|
 |
Junilu Lacar
Bartender
Joined: Feb 26, 2001
Posts: 4115
|
|
There might be an answer to this in the JavaScript forum. Do a search there. We'll have this thread closed or moved there if you find something. This thread may give you a clue: http://www.javaranch.com/ubb/Forum20/HTML/000741.html Thanks! Junilu
|
Junilu - [How to Ask Questions] [How to Answer Questions] [MiH]
|
 |
Jeff Bergan
Greenhorn
Joined: Jul 01, 2000
Posts: 13
|
|
I take it then that the code below will have no affect? I write out information on the JSP page through attributes and tags and when I use the history page that is still their. The forms with inboxes are cleared, but for the info I put on the page using stored information it shows up. I can solve the problem of using the back button with some java script (although very inelegantly) <% response.setDateHeader ("Expires", 0); response.setHeader("Pragma", "no-cache"); response.setHeader("Cache-Control", "no-store"); response.setDateHeader("max-age", 0); response.setDateHeader("Expires", 0); %>
|
 |
 |
|
|
subject: History
|
|
|