如何在打开一个页面时弹出一个新的窗口页面,求参考例子~

解决方案 »

  1.   


       protected void Page_Load(object sender, EventArgs e)
        {
            Page.ClientScript.RegisterStartupScript(this.GetType(), "K", "<script>window.open('"+this.Request.RawUrl+"');</script>");
        }
      

  2.   

    ScriptManager.RegisterClientScriptBlock 用这个
      

  3.   

    ScriptManager.RegisterClientScriptBlock (....);
      

  4.   


    ScriptManager.RegisterClientScriptBlock(form1, this.GetType(), "cy1", "window.open('页面路径','','scrollbars=yes');", true);
      

  5.   

    嗯。在服务器端调用客户端的js方法。或者在客户端直接open就是了、