文件第一行
<%
  response.expires=0 '文件已收到就立即过期,你可以指定都久时间过期!
%>

解决方案 »

  1.   

    <meta http-equiv="Expires" CONTENT="0">
    <meta http-equiv="Cache-Control" CONTENT="no-cache">
    <meta http-equiv="Pragma" CONTENT="no-cache">
      

  2.   

    <--------------高手看过来! 能不能搞定这个?
    http://community.csdn.net/Expert/topic/3472/3472337.xml?temp=.1701624
      

  3.   

    <%    response.setHeader("Pragma","No-cache"); 
      response.setHeader("Cache-Control","no-cache"); 
         response.setDateHeader("Expires", 0); 
    %>
      

  4.   

    把下面二个都加上
    <%     
       Response.expires=0
       Response.buffer = 0
    %> <meta http-equiv="Expires" CONTENT="0">
    <meta http-equiv="Cache-Control" CONTENT="no-cache">
    <meta http-equiv="Pragma" CONTENT="no-cache">
      

  5.   

    window.location.repalce("d.jsp")
    没有后退按扭
      

  6.   

    <--------------高手看过来! 能不能搞定这个?
    http://community.csdn.net/Expert/topic/3472/3472337.xml?temp=.1701624