我在寻找一个明确的参考资料,说明禁用浏览器缓存页面所需的 ASP.NET 代码。有许多方法可以影响 HTTP 头和 meta 标记,我得到的印象是,不同的浏览器需要不同的设置才能正确运行。如果能够获得一些注释代码,以指出哪些代码适用于所有浏览器,哪些代码是特定浏览器(包括版本)所需的,那将是非常棒的。
这里有大量关于这个问题的信息,但是我还没有找到一个很好的参考资料来描述每种方法的好处,以及某种特定的技术是否已经被更高级别的 API 所取代。
我对 ASP.NET 3.5 SP1特别感兴趣,但是如果能得到早期版本的答案就更好了。
这个博客条目 Firefox 和 IE 缓存的两个重要区别描述了一些 HTTP 协议行为差异。
下面的示例代码说明了我感兴趣的内容
public abstract class NoCacheBasePage : System.Web.UI.Page
{
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
DisableClientCaching();
}
private void DisableClientCaching()
{
// Do any of these result in META tags e.g. <META HTTP-EQUIV="Expire" CONTENT="-1">
// HTTP Headers or both?
// Does this only work for IE?
Response.Cache.SetCacheability(HttpCacheability.NoCache);
// Is this required for FireFox? Would be good to do this without magic strings.
// Won't it overwrite the previous setting
Response.Headers.Add("Cache-Control", "no-cache, no-store");
// Why is it necessary to explicitly call SetExpires. Presume it is still better than calling
// Response.Headers.Add( directly
Response.Cache.SetExpires(DateTime.UtcNow.AddYears(-1));
}
}