我已试想通过修改Jsp来实现对IE缓冲的清除----不行, 所以还是需要在Jsp中写一段Java程序来实现对IE缓冲的清除,请各位兄弟指导指导!

解决方案 »

  1.   

    <meta http-equiv="expires" content="0">
        <meta http-equiv="pragma" content="nocache">
      

  2.   

    在jsp中加入这几句:
       response.addHeader("Pragma","No-cache");
       response.addHeader("Cache-Control","no-cache");
       response.addDateHeader("Expires",1);
      

  3.   

    用javascript把history对象清空,
    if(history!=null){
      history = null;
    }
      

  4.   

    你通过你所说的方法实现了对IE缓冲(Cache)的清除吗?我试了好像不行,你若用过,请将你写的页面发给我好吗?
      

  5.   

    IE所有打开文件的缓冲是存放在C:\WINNT\Temporary Internet Files\Content.IE5\下的四个目录中,写一段java程序通过jsp来调即OK,还是我自已解决了!
    谢谢上面几位的参与!