I have a JAVA applet on page, which I don't want to be cached by browser.
Is there any possibility how to tell the browser not to cache an applet (I mean a property of the <applet> tag, ets.) ?
The html page the applet is used on, does have following meta tags setting:
<META HTTP-EQUIV="Expires" CONTENT="0">
<META http-equiv="Pragma" content="no-cache">
<META http-equiv="Cache-Control" content="no-cache">
so the html file itself is not cached, but when I call:
You cannot keep browsers from caching anything. You can ask but they won't always comply. For non-HTML files you need to adjust the HTTP header that your server pre-pends to the file. If you just want to avoid the possibility of browsers not downloading the newest version of your applet then send a really old date or set the date to '0'. And know that anything that you might want to put in an HTTP-EQUIV META element, you can put in the HTTP header.
Bookmarks