window.open("http://localhost/words/score.aspx?UserID="+document.all("UserIDHidden").value ,"你的得分","得分","top=50,left=200,width=200,height=50,status=no,toolbar=no,menubar=no,scrollbar=no,resizable=no")改成window.open("http://localhost/words/score.aspx?UserID="+document.all("UserIDHidden").value ,"你的得分","top=50,left=200,width=200,height=50,status=no,toolbar=no,menubar=no,scrollbar=no,resizable=no")将"得分"删掉

解决方案 »

  1.   

    在你打开的窗口的client里写
    <script language="javascript">
        resizeTo(800,600);
    </script>或者在.vb里写
    Response.Write("<script language=""javascript"">")            
    Response.Write("resizeTo(screen.width,screen.hight);")
    Response.Write("</script>")
      

  2.   

    window.open("http://localhost/words/score.aspx?UserID="+document.all("UserIDHidden").value ,"你的得分,"top=50,left=200,width=200,height=50,status=no,toolbar=no,menubar=no,scrollbar=no,resizable=no")就对了window.open("URL地址","窗口名","参数")
      

  3.   

    <script language="javascript">
        resizeTo(800,600);
        moveto(80,50);                  '位置
    </script>