Flush cache in iis6 - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T06:46:10Zhttp://stackoverflow.com/feeds/question/440406http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/440406/flush-cache-in-iis61Flush cache in iis6Bogdan Kanivets2009-01-13T19:25:21Z2009-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#4404370Answer by Bit Destroyer for Flush cache in iis6Bit Destroyer2009-01-13T19:33:34Z2009-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#4407350Answer by splattne for Flush cache in iis6splattne2009-01-13T20:46:46Z2009-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#4416390Answer by DrJokepu for Flush cache in iis6DrJokepu2009-01-14T01:55:37Z2009-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#4511760Answer by Bogdan Kanivets for Flush cache in iis6Bogdan Kanivets2009-01-16T16:59:23Z2009-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>