Forum Moderators: open
ie: <META name="Expires" content="Tue, 01 Jun 1999 19:58:02 GMT">
Will this work? Can i just put in the time and date of my update and the browser will know to refresh? I'm unclear with the usage of this meta tag..
Thanks in advance..
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
Note, these should be the first thing in your <head>. Also, a perferred method is to send these values in the actual HTTP headers, but that requires either some server side language (like ASP, PHP, etc.), or modifying the server configuration. There are drawbacks to preventing caching of the page as well, so you really should do some research. Google... you'll find what you need.