ASP.NET 取消和禁用缓存

时间:2023-03-09 17:29:26
ASP.NET 取消和禁用缓存

客户端取消:

  1. <html>
  2. <head>
  3. <meta http-equiv="Expires" CONTENT="0">
  4. <meta http-equiv="Cache-Control" CONTENT="no-cache">
  5. <meta http-equiv="Pragma" CONTENT="no-cache">
  6. </head>

服务器具端取消:

服务器端:

  1. Response.Buffer = true;
  2. Response.ExpiresAbsolute = DateTime.Now.AddDays(-1);
  3. Response.Cache.SetExpires(DateTime.Now.AddDays(-1));
  4. Response.Expires = 0;
  5. Response.CacheControl = "no-cache";
  6. Response.Cache.SetNoStore();

Global里面:

  1. protected   void   Application_BeginRequest(Object   sender,   EventArgs   e)
  2. {
  3. HttpContext.Current.Response.Cache.SetNoStore();
  4. }

页面:

  1. <%@ OutPutCache Location="None"%>

页面基类:

  1. public   class   PageBase   :   Page
  2. {
  3. public   PageBase()   {}
  4. protected   override   OnLoad(   EventArgs   e   )   {
  5. Response.Cache.SetNoStore();
  6. base.OnLoad();
  7. }
  8. }

最简单的办法 :-)

学CSDN的这个论坛,在URL后面随机的加一些没用的参数,比如:
http://xxx/xxx/xxx.jpg?p=xxx

IE是用过URL来控制缓存的,这样就解决了

原文:http://ourstrade.blog.163.com/blog/static/123663391200972531115487/