showModalDialog提交的问题,如何让其不出现新页面!!!

showModalDialog中点确定按钮提交,总会出现一个新的页面,如何让其不出现 
--------------------------------------------------------------- 

办法: 
window.showModalDialog("xxx.htm") 

xx.htm 
==================== 


<frameset rows="0,*"> 
<frame src="about:blank"> 
<frame src="xxx.asp"> 
</frameset> 

xxx.asp 
========= 
<form target="_self" method=post>

你可能感兴趣的:(showModalDialog提交的问题,如何让其不出现新页面!!!)