Date: 11/04/06 (Java Web) Keywords: browser, web This is old news for most of us and yet when I wanted to quickly find it, it took some searching. So here is, in simple language, what you can do to prevent your web pages from being cached by browsers. Add in your head section (between <head> and </head> tags): <meta HTTP-EQUIV="Pragma" CONTENT="no-cache"> <meta HTTP-EQUIV="Expires" CONTENT="-1"> And then [...] Source: http://blog.taragana.com/index.php/archive/how-to-prevent-browser-caching-of-html-pages/
|