Stever wrote on 10/21/2008 11:34 AM: > Apparently this file is saved in the cache, how do I make sure > everytime I click on the tool button I get the latest page?
Via the headers, have the page expire in the past and set the cache-control headers to no-cache: Expires: Thu, 11 Jun 1998 13:17:30 GMT Cache-Control: no-store, no-cache, must-revalidate, no-transform, max-age=0, post-check=0, pre-check=0 Pragma: no-cache Some people instead choose to make the URL dynamic by appending a random query string using the current milliseconds (or something similar). I don't use that method, so maybe someone who does it that way can respond. - Bil