清空机器上的临时文件就行了
可以到
Temporary Internet Files文件夹下面
把所有的文件都删了,或者用IE的工具-〉Inernet选项-〉常规
删除文件

解决方案 »

  1.   

    将下面的代码加到JSP文件中
    //设置catche,页面不被Browser保存
    response.setHeader("Cache-Control","no-store"); //HTTP 1.1
    response.setHeader("Pragma","no-cache");  //HTTP 1.0
    response.setDateHeader ("Expires", 0); //prevents caching at the proxy server
      

  2.   

    <META http-equiv=Pragma content=no-cache>
    <META http-equiv=no-cache>
    <META http-equiv=Expires content=0>
    <META http-equiv=Cache-Control content=no-cache>
    <META http-equiv=Content-Type content="text/html; charset=gb2312">