.NET 打开一个页面同时弹出一个新的窗口页面
如何在打开一个页面时弹出一个新的窗口页面,求参考例子~
[解决办法]
protected void Page_Load(object sender, EventArgs e) { Page.ClientScript.RegisterStartupScript(this.GetType(), "K", "<script>window.open('"+this.Request.RawUrl+"');</script>"); }
[解决办法]
这次你肯定记牢了
[解决办法]
用js打开一个新窗口!
[解决办法]
ScriptManager.RegisterClientScriptBlock(form1, this.GetType(), "cy1", "window.open('页面路径','','scrollbars=yes');", true);
[解决办法]
嗯。在服务器端调用客户端的js方法。或者在客户端直接open就是了、