zoukankan      html  css  js  c++  java
  • 禁止IE缓存的方法

    禁止页面内容缓存:

      HTM 网页  

      <META   HTTP-EQUIV="pragma"   CONTENT="no-cache"> 

      <META   HTTP-EQUIV="Cache-Control"   CONTENT="no-cache,   must-revalidate"> 

      <META   HTTP-EQUIV="expires"   CONTENT="Wed,   26   Feb   1997   08:21:57   GMT"> 

      ASP 网页  

      <% 

          Response.Expires   =   -1 

          Response.ExpiresAbsolute   =   Now()   -   1 

          Response.cachecontrol   =   "no-cache" 

      %> 

      PHP 网页  

      header("Expires:   Mon,   26   Jul   1997   05:00:00   GMT"); 

      header("Cache-Control:   no-cache,   must-revalidate"); 

      header("Pragma:   no-cache"); 

      JSP 

              response.setHeader("Pragma","No-Cache"); 

              response.setHeader("Cache-Control","No-Cache"); 

              response.setDateHeader("Expires",   0); 

      C# 中禁止 cache 的方法!  

      Response.Buffer=true; 

      Response.ExpiresAbsolute=System.DateTime.Now.AddSeconds(-1); 

      Response.Expires=0; 

      Response.CacheControl="no-cache"; 

    禁止图片缓存:

    在图片后面加一个随机参数,如:

    <img src=”images/bg.gif?temp_id=156404/>

  • 相关阅读:
    医疗设备软件的安全性问答
    python使用技巧
    C++对象模型
    面向对象方法综述
    如何设计可扩展性系统架构
    敏捷过程
    python中import的相关知识总结
    软件架构的关键原则
    读后感——程序员的思维修炼
    LINUX系统备份工具
  • 原文地址:https://www.cnblogs.com/zengwei/p/1415420.html
Copyright © 2011-2022 走看看