这是我在default.aspx
中的代码行Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();
但是,Firefox不起作用。如何在Firefox中刷新缓存?顺便说一句,我使用的是Silverlight。
提前致谢。
答案 0 :(得分:1)
FireFox是一个带缓存的思想。你正在处理哪个版本?
你可以试试这个。
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetExpires(DateTime.Now.AddSeconds(-1));
Response.Cache.SetNoStore();
Response.Buffer = true;
Response.CacheControl = "no-cache";
Response.AddHeader("Pragma", "no-cache");
Response.AppendHeader("Cache-Control", "no-store");
Response.Expires = -1441;