刷新结果页面时,采用location=".jsp";(此处是你要刷新的页面),当然,该页需要的参数还必须传进去。

解决方案 »

  1.   


    html 中自动刷新功能
      

  2.   

    关掉现在的窗口,再重新开一个,这样就不会有历史。
    在你的jsp的前面加这样的话:<script language="javascript">

    if(window.opener!=null){
    window.opener.close();
    }else{
    window.open(window.location , "newWin" ,"width=800,height=600,left=0,top=0,resizable=yes,location=yes,scrollbars=yes,channelmode=no,menubar=yes,status=yes,toolbar=yes,directions=yes");
    }

    </script>
      

  3.   

    试一下:
    第一次提交表单的时候不要用method="post"而用method="get"
      

  4.   

    我现在就想用post方法提交数据!我知道get方式不会有提示!去掉history,那我岂不是不能重新到服务器拿数据了,
    数据我还要提交,就实现去掉那个提示框!IE里面有没有什么设置,
    可以把那个体行关掉?