Disable browser caching seems to revolve around how to make it work in IE, Mozilla and other browsers.
Here is the code that will disable browser cache. I have used this and it worked for me.
//Used for disabling page cachingHttpContext.Current.Response.Cache.SetExpires(DateTime.UtcNow.AddDays(-1));HttpContext.Current.Response.Cache.SetValidUntilExpires(false);HttpContext.Current.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches);// Requires for IEHttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache);// Requires for MozillaHttpContext.Current.Response.Cache.SetNoStore();
No comments:
Post a Comment