I am looking for a method to disable the browser cache for an entire ASP.NET MVC Website
I found the following method:
Response.Cach
You can try below code in Global.asax file.
protected void Application_BeginRequest() { Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.Cache.SetExpires(DateTime.UtcNow.AddHours(-1)); Response.Cache.SetNoStore(); }