window.open("你想打开的页面",null,"_blank")

解决方案 »

  1.   

    刚试了一下,可以啊.iframe中的代码
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
    <title>无标题文档 </title> 
    <script type="text/javascript">
    function login_c(){
    window.open("c.html",null,"_blank");
    }
    </script>
    </head>
    <body>
    <a href="#" onclick="login_c()">我是b页面,点我到c页面</a>
    </body> 
    </html> 
      

  2.   

    我是写在C#代码里的,不行。。RegisterClientScriptBlock("", "<script language=javascript>window.open('" + path + "',null,'_blank')</script>");
      

  3.   

    干吗要null,你把null去掉看看