I am looking for method to disable Browser Cache for entire ASP.Net MVC Website

I found following method,

Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);
Response.Cache.SetNoStore();

and also meta tag method, ( It wont work for me , since some MVC Actions send partial html/json through ajax, without head,meta tag )

<meta http-equiv="PRAGMA" content="NO-CACHE">

But i am looking for simple method, to disable browser cache for entire website.

link|improve this question

69% accept rate
feedback

3 Answers

up vote 18 down vote accepted
HttpContext.Current.Response.Cache.SetExpires(DateTime.UtcNow.AddDays(-1))
HttpContext.Current.Response.Cache.SetValidUntilExpires(false)
HttpContext.Current.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches)
HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache)
HttpContext.Current.Response.Cache.SetNoStore()

All requests get routed through default.aspx first - so assuming you can just pop in code behind there.

link|improve this answer
6  
I would put it into Global.asax.cs in Application_BeginRequest(). I don't trust this default.aspx thing... Another question: does this have precedence over [OutputCache] attributes? – chris166 Jul 21 '09 at 17:31
2  
I like the idea of simply creating a Global Action Filter an putting this stuff in that way. Negates the need to worry about Default.aspx and Global.asax. – Cat Man Do Jul 21 '09 at 18:16
5  
Putting this in Application_BeingRequest can cause some issues. If your images get routed through the .net runtime (which can happen if you're using wildcard mapping for nice urls) then no images will be cached on the browser. This can REALLY slow down your page load times as each page request will re-download all images. – herbrandson Mar 31 '10 at 7:24
2  
Using anything programmatically will always override any declared Attribute. In other words, using the OP's code will override any declared [OutputCache] attribute. – Dave Black Sep 13 '11 at 18:05
feedback

Create a class that inherits from IActionFilter.

public class NoCache : ActionFilterAttribute
{  
    public override void OnResultExecuting(ResultExecutingContext filterContext)
    {
        filterContext.HttpContext.Response.Cache.SetExpires(DateTime.UtcNow.AddDays(-1));
        filterContext.HttpContext.Response.Cache.SetValidUntilExpires(false);
        filterContext.HttpContext.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches);
        filterContext.HttpContext.Response.Cache.SetCacheability(HttpCacheability.NoCache);
        filterContext.HttpContext.Response.Cache.SetNoStore();

        base.OnResultExecuting(filterContext);
    }
}

Then put attributes where needed...

[NoCache]
[HandleError]
public class AccountController : Controller
{
    [NoCache]
    [Authorize]
    public ActionResult ChangePassword()
    {
        return View();
    }
}
link|improve this answer
12  
Rather than HttpContext.Current.Response, you should probably use filterContext.HttpContext.Response since HttpContext.Current returns the pre-MVC HttpContext object and the filterContext.HttpContext returns the post-MVC HttpContextBase. It increases testability and consistency. – mkedobbs Jan 25 '10 at 20:57
5  
IActionFilter is already implemented on the ActionFilterAttribute, so you don't need to repeat it. – Andrew Davey Apr 22 '10 at 8:50
43  
In current versions of ASP.NET MVC you can simply use OutputCacheAttribute to prevent caching: [OutputCache(NoStore = true, Duration = 0, VaryByParam = "None")] – Ashley Tate May 14 '10 at 18:34
1  
@jhexp, OutputCache and setting Response.Cache is (almost) the same thing, except some minor limitations on OutputCache. – Bill Yang Jul 14 '10 at 17:33
4  
I'd like to point out that I just spent several days using every "put this in your code to stop caching" solution under the sun for ASP.NET MVC, including the accepted answer to this question, to no avail. This answer - the attribute - worked. +1M Rep if I could... – Schnapple Jul 22 '10 at 22:14
show 4 more comments
feedback

I'm a bit late to the answers here but - instead of a roll your own, simply use what's provided for you. As mentioned previously, do not disable caching for everything. For instance, jQuery scripts used heavily in mvc should be cached. Actually ideally you should be using a CDN for those anyways - but my point is some content should be cached.

What I find works best here rather than sprinkling the [OutputCache] everywhere is to use a class:

[System.Web.Mvc.OutputCache(NoStore = true, Duration = 0, VaryByParam = "*")]
public class NoCacheController  : Controller
{
}

All of your controllers you want to disable caching for then inherit from this controller.

If you need to override the defaults in the NoCacheController class simply specify the cache settings on your action method and the settings on your Action method will take precedence.

[HttpGet]
[OutputCache(NoStore = true, Duration = 60, VaryByParam = "*")]
public ViewResult Index()
{
  ...
}
link|improve this answer
In my experience changing the OutputCache duration merely changes the duration that the page is stored in IIS's OutputCache - i.e. the dynamic content cache on the web server - it has nothing to do with browser caching settings. The answer above with an ActionFilter solves the problem of disabling browser caching. – ozziepeeps Aug 22 '11 at 16:05
2  
@Ozziepeeps, your comment is not correct. The msdn docs discuss browser caching as well as a simple test will show this attribute changes the cache-control response header to "Cache-Control: public, no-store, max-age=0" from "Cache-Control: private" without using the attribute. – Adam Tuliper Aug 22 '11 at 19:47
1  
also fyi - you can control all three locations (server, proxy, client) with this attribute so absolutely can control beyond the server cache. See asp.net/mvc/tutorials/… for some additional details. – Adam Tuliper Aug 22 '11 at 23:44
Ok, thanks @Adam Tuliper. I guess I must have been seeing some spurious behaviour. In my project, we actually needed to disable Output Caching on IIS for other reasons, so resorted to implementing a no-cache action filter similar to the above – ozziepeeps Aug 24 '11 at 10:45
1  
excellent worked like a charm! – PJUK Dec 10 '11 at 18:18
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.