How to set the page size while opening the window?

josh78

New Member
I am using ASP.NET and C# and I am using window.open() for opening the window.Now i need to set the width of that page in that window.I am using this code on buttonclick event.\[code\]ClientScript.RegisterStartupScript(this.GetType(), "oncl", "<script language=javascript>window.open('Print.aspx','PrintMe','width=900,resizable=1,scrollbars=1');</script>");\[/code\]The width inside the script is only setting the widow width. But i want to set the width of the page.Is it possible?Thanks..
 
Back
Top