Disable browser cache for entire ASP.NET website

前端 未结 8 1397
既然无缘
既然无缘 2020-11-22 03:20

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         


        
8条回答
  •  被撕碎了的回忆
    2020-11-22 04:05

    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();
        }
    

提交回复
热议问题