the simple method is to add a line in the header part of your html<head>
<base target="_self">
</head>
<body>
...
</body>also see
http://blog.joycode.com/mmkk/archive/2004/05/20/22038.aspx

解决方案 »

  1.   

    老问题了,用框架页来解决。
    用showModalDialog打开框架页,这样里面的子页面在提交时就不会产生新窗口。
      

  2.   

    在<head>里加<base target="_self">  就可以支持ASP.net的 Postback 了也就是表单的 method=post 的提交
      

  3.   

    shuangren(土狗早睡早起)说的对,需要用框架页解决
      

  4.   

    你在showModalDialog打开的页里加一个
    <iframe height="0px" width="0px" name="frmpost" id="frmpost" src="about:blank"></iframe>
    把你的form的target="frmpost"
      

  5.   

    用框架太麻烦了,就在<head></head>之间加句
    <base target="_self">
    就可以了.
    但是如果IE是5.5以下的话,就不行了