How do I turn off caching in IIS7?

72,014

Solution 1

Click on the server name then go to output caching.

Click Add Cache Rule then type the extensions - .aspx, .aspx.vb, .aspx.cs, .js etc. (not sure if you can do all on one)

Then simply either tick the prevent all caching or untick user-mode caching and it should stop IIS from keeping a cache of the pages.

Next time you do a full refresh, it should get the files from the hard drive and not the cache/memory




I do not currently have a machine with IIS7 on that I can muck around with so I Googled and found the picture below:

alt text

Solution 2

This answer helped me, (note: i'm using IIS8) link

I think its better to disable "Cache" of "Output Cache feature" by clicking the "Edit Feature Settings"

Solution 3

This blog might help: Response caching in IIS7.

It explains how this functionality can be controlled by editing system.webServer/caching section or by using IHttpCachePolicy intrinsic.

Share:
72,014

Related videos on Youtube

jammus
Author by

jammus

One Google search ahead of the competition.

Updated on September 17, 2022

Comments

  • jammus
    jammus over 1 year

    I'm developing an ASP classic site under Windows 7 (form a queue ladies). The problem is IIS seems to be heavily making use of its cache for both static and dynamic content which really conflicts with my 'make a small change, alt-tab, hit ctrl-F5' development style. Changes made to .asp files may take two or three refreshes to show up where as changes to .js files can take 20 times as many. How do I go about turning the caching off on my development machine?

    Cheers.

    in b4 stop using asp classic

  • slm
    slm about 11 years
    Welcome to Super User! Generally we like answers on the site to be able to stand on their own - Links are great, but if that link ever breaks the answer should have enough information to still be helpful. Please consider editing your answer to include more detail. See the FAQ for more info.
  • Ata Iravani
    Ata Iravani about 11 years
    @slm thanks for your advise. I'll try to add more detail later
  • ste-fu
    ste-fu over 8 years
    This sorted out my issue with caching the responses from a WCF service as well
  • alexGIS
    alexGIS about 5 years
    You just made my day William. Thanks for that, it totally fixed my issue. Cheers!
  • Anton Shakalo
    Anton Shakalo about 4 years
    Lot better answer given below, upvote it