代码改变世界

c# IE 清除缓存

2016-09-20 18:02  newbirth  阅读(380)  评论(0编辑  收藏  举报
     Response.Buffer = true;
        Response.ExpiresAbsolute = System.DateTime.Now.AddSeconds(-1);
        Response.Expires = 0;
        Response.CacheControl = "no-cache";
        Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);
        Response.Cache.SetNoStore();