加入
<MEAT HTTP-EQUIV="Pragma" CONTENT="no-cache">
不缓存。

解决方案 »

  1.   

    一、Expires(期限)
    说明:可以用于设定网页的到期时间。一旦网页过期,必须到服务器上重新调阅。
    用法:<META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT">
    注意:必须使用GMT的时间格式。
    二、Pragma(cache模式)说明:禁止浏览器从本地机的缓存中调阅页面内容。
    用法:<META HTTP-EQUIV="Pragma" CONTENT="no-cache"> 
    注意:这样设定,访问者将无法脱机浏览。三、脚本实现
    <%
    response.expires = 0 
    response.expiresabsolute = now() - 1 
    response.addHeader "pragma","no-cache" response.addHeader "cache-control","private" 
    Response.cachecontrol = "no-cache"
    %>
      

  2.   

    <MEAT HTTP-EQUIV="Pragma" CONTENT="no-cache"> 这样简单些