码迷,mamicode.com
首页 > Windows程序 > 详细

c# IE 清除缓存

时间:2016-09-20 19:59:49      阅读:196      评论:0      收藏: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();

 

c# IE 清除缓存

标签:

原文地址:http://www.cnblogs.com/password1/p/5889818.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!