Response.Write("<SCRIPT language='javascript'>window.open('URL'); </SCRIPT>")

解决方案 »

  1.   

    window.open
    或是
    window.showModalDialog() ;
      

  2.   

    HyperLink target="_blank"
    或<a hef="" target="_blank">
    或者在代码中用javascript,window.open()
      

  3.   

    window.opem(URl,windowName,[windowFeatures])windowFeatures:toolbar=yes|no,
    location=yes|no,
    directories=yes|no,
    status=yes|no,
    menubar=yes|no,
    scrollbars=yes|no,
    resizable=yes|no,
    copyhistory=yes|no,
    width=pixels,
    height=pixels
      

  4.   

    window.open("result.aspx","","height=600,width=800,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no ")