c# IE 清除缓存
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# IE 清除缓存相关的知识,希望对你有一定的参考价值。
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 清除缓存的主要内容,如果未能解决你的问题,请参考以下文章
C# WebBrowser 控件:清除缓存而不清除 cookie