F
FAQ server
-----------------------------------------------------------------------
FAQ Topic - How do I force a reload from the server/prevent caching?
-----------------------------------------------------------------------
To reload a page, use location.reload(). However, this depends
upon the cache headers that your server sends. To change this,
you need to alter the server configuration. A quick fix on the
client is to change the page URI so that it contains a unique
element, such as the current time. For example:
« location.replace(location.href+'?d='+new Date().valueOf()) »
If the location.href already contains a Query String, use:
« location.replace(location.href+'&d='+new Date().valueOf()) »
http://www.mnot.net/cache_docs/
http://docs.sun.com/source/816-6408-10/date.htm
===
Postings such as this are automatically sent once a day. Their
goal is to answer repeated questions, and to offer the content to
the community for continuous evaluation/improvement. The complete
comp.lang.javascript FAQ is at http://www.jibbering.com/faq/.
The FAQ workers are a group of volunteers.
FAQ Topic - How do I force a reload from the server/prevent caching?
-----------------------------------------------------------------------
To reload a page, use location.reload(). However, this depends
upon the cache headers that your server sends. To change this,
you need to alter the server configuration. A quick fix on the
client is to change the page URI so that it contains a unique
element, such as the current time. For example:
« location.replace(location.href+'?d='+new Date().valueOf()) »
If the location.href already contains a Query String, use:
« location.replace(location.href+'&d='+new Date().valueOf()) »
http://www.mnot.net/cache_docs/
http://docs.sun.com/source/816-6408-10/date.htm
===
Postings such as this are automatically sent once a day. Their
goal is to answer repeated questions, and to offer the content to
the community for continuous evaluation/improvement. The complete
comp.lang.javascript FAQ is at http://www.jibbering.com/faq/.
The FAQ workers are a group of volunteers.