报表知识库
我要提问

关于翻页时弹出新页面的问题

问题描述:

     当使用showModalDialog展现报表页面时,如:window.showModalDialog(”showReport.jsp?raq=test.raq”)
     点击第一次下一页时,会打开一个新的页面展现报表第二页。如何避免弹出一个新的页面呢?

解决方法:

     在showReport.jsp页面head中加入<base target=”_self” />,如:
<head>
<base target=”_self” />
</head>