• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    如何防止IE缓存页面文件
    清除缓存,防止模式窗口页面不更新的情况: 

    Code: 

    HTML 
    <META HTTP-EQUIV="pragma" CONTENT="no-cache"> 
    <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate"> 
    <META HTTP-EQUIV="expires" CONTENT="Mon, 23 Jan 1978 20:52:30 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); 
    上一篇:如何用微软Live custom domains,注册自己域名的邮箱
    下一篇:google adsense工程师K站的算法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    如何防止IE缓存页面文件 如何,防止,缓存,页面,文件,