When a web browser is instructed to load a web page, it compares the existing web page with the cached web page. If changes have been made to the existing web page that are not present in the cached web page then it loads the existing web page. However if an Adobe Flash file or a picture on the existing web page have the same name as the cached web page then this information will often be loaded from the cache. This can be an especially frustrating experience. Some recommend the use of META tags which by themselves have distinct limitations that do not address the issue described. Some recommend changing the filenames on a dynamic or continuous basis. This solution works but could be quite elaborate. I believe the following solution is simple and the most comprehensive. The following javascript fully reloads the web page once on load: Javascript (reload.js): function reload() { if (self.name != '_refreshed_') { self.name...
Technical Adventures in the World of IT