.NET 打开一个页面同时弹出一个新的窗口页面解决办法

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

------解决方案--------------------
C# code

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

------解决方案--------------------
这次你肯定记牢了
------解决方案--------------------
用js打开一个新窗口!


------解决方案--------------------
探讨
引用:
C# code


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

------解决方案--------------------
ScriptManager.RegisterClientScriptBlock (....);
------解决方案--------------------
C# code

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

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