作为记录,此代码是否清除或禁用缓存?
Response.Cache.SetCacheability(HttpCacheability.NoCache)
Response.Cache.SetExpires(DateTime.Now.AddSeconds(1))
Response.Cache.SetNoStore()
如果是,这是否会禁用浏览器的缓存?还是服务器缓存?如果不是,那么清除浏览器缓存的正确方法是什么。再次,浏览器的缓存。
我也找到了这段代码。
foreach (DictionaryEntry entry in HttpContext.Current.Cache){
HttpContext.Current.Cache.Remove(string(entry.Key));
}
这会删除浏览器的缓存吗?我的目标是清除我的 login.aspx 中浏览器的缓存。谢谢!