在asp.net c#中控制弹出窗口的大小和位置

时间:2011-10-28 15:28:33

标签: c# asp.net

我有这个打开弹出页面的代码。我想控制弹出窗口的大小和位置,我不知道如何更改代码来做到这一点。

ClientScript.RegisterStartupScript(this.GetType(), "newWindow", String.Format("<script>window.open('{0}');</script>", "/PopupPages/EmailPage.aspx")); 

4 个答案:

答案 0 :(得分:3)

您可以在open方法中传递选项列表以指定大小等。请参阅此msdn article.

window.open([url], null, [options]);

例如:

window.open("myURl.aspx", null, "height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");

答案 1 :(得分:0)

尝试:

ClientScript.RegisterStartupScript(this.GetType(), "newWindow", String.Format("<script>window.open('{0}', 'mywin', 'left=25, top=25, width=500, height=500');</script>", "/PopupPages/EmailPage.aspx"));

答案 2 :(得分:0)

这就是我的工作

    ClientScript.RegisterStartupScript(this.GetType(), "newWindow", "<script>window.open('/PopupPages/EmailPage.aspx', '', 'top=100,left=300,menubar=no,toolbar=no,location=no,resizable=no,height=750,width=850,status=no,scrollbars=no,maximize=null,resizable=0,titlebar=no');</script>");

答案 3 :(得分:0)

这就是我所做的:

ScriptManager.RegisterStartupScript(Page, typeof(Page), "OpenWindow", "window.open('Details.aspx','mywindow','menubar=1,resizable=1,width=900,height=600');", true);