asp.net mvc disable browser cache
- by Palani
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.