Flush cache in iis6 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T06:46:10Z http://stackoverflow.com/feeds/question/440406 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/440406/flush-cache-in-iis6 1 Flush cache in iis6 Bogdan Kanivets 2009-01-13T19:25:21Z 2009-01-16T16:59:23Z <p>For some magical reason ii6 started to cache pages on the server. Even if I remove the page, it is still displayed. I tried to follow couple suggestions but no luck. That's what I did so far:</p> <ol> <li>Deleted \WINDOWS\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET Files</li> <li>Unchecked 'cache ISAPI extensions' in the IIS configuration.</li> <li>Added 'Cache-Control no-cache' to HTTP headers in properties.</li> <li>Tried to create the page that clear the cache <a href="http://www.dotnet247.com/247reference/msgs/13/67641.aspx" rel="nofollow">http://www.dotnet247.com/247reference/msgs/13/67641.aspx</a></li> </ol> <p>Update: also tried to disable asp cache <a href="http://stackoverflow.com/questions/103158/iis-asp-caching">http://stackoverflow.com/questions/103158/iis-asp-caching</a> But the files in v2.0.50727\Temporary ASP.NET Files are still created</p> <p>If anybody has other suggestions, please share.</p> <p>Thanks.</p> http://stackoverflow.com/questions/440406/flush-cache-in-iis6/440437#440437 0 Answer by Bit Destroyer for Flush cache in iis6 Bit Destroyer 2009-01-13T19:33:34Z 2009-01-13T19:33:34Z <p>Did you try restarting the IIS server to see if that stops it from displaying? If it doesn't, then it might not be a caching issue.</p> <p>I believe restarting the server is supposed to clear the cache.</p> http://stackoverflow.com/questions/440406/flush-cache-in-iis6/440735#440735 0 Answer by splattne for Flush cache in iis6 splattne 2009-01-13T20:46:46Z 2009-01-13T20:46:46Z <p>Maybe the problem isn't the IIS, but a web proxy between your browser and your web server caching the page? </p> <p>Or a wrong DNS settings pointing to another server which holds a copy of that web/page? You could also look on the same IIS if there is another web configured and host headers got mixed up, making you test on the wrong web.</p> http://stackoverflow.com/questions/440406/flush-cache-in-iis6/441639#441639 0 Answer by DrJokepu for Flush cache in iis6 DrJokepu 2009-01-14T01:55:37Z 2009-01-14T01:55:37Z <p>I might just say the obvious here but have you tried recycling the application pool?</p> http://stackoverflow.com/questions/440406/flush-cache-in-iis6/451176#451176 0 Answer by Bogdan Kanivets for Flush cache in iis6 Bogdan Kanivets 2009-01-16T16:59:23Z 2009-01-16T16:59:23Z <p>Thanks for replies guys. </p> <p>I figured out that it wasn't the caching issue. I didn't cleared out Bin folder and the compiled version of the page with extension .compiled was seating there all the time. I don't what changed this time, but I followed the same process like 100 times before and copied files on top without clearing Bin.</p> <p>I should be more accurate with such things.</p>