You can open a new window at a specific size using javascript such as this:
a=window.open('MyPage.aspx','MyWindow',"height=200,width=400")
There are all kinds of options for setting window properties such as window
size and toolbar visibility.
Here's more info: http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/open_0.asp
This is client side code that must be executed in the browser, not on the
server.
You could call the code from a click event, or wherever you want in your
client side code.\
Thanks Steve;
Does this Script get called from the PageLoad event?
Wayne
Steve C. Orr said:
You can open a new window at a specific size using javascript such as this:
a=window.open('MyPage.aspx','MyWindow',"height=200,width=400")
There are all kinds of options for setting window properties such as window
size and toolbar visibility.
Here's more info:
This is client side code that must be executed in the browser, not on the
server.
You could call the code from a click event, or wherever you want in your
client side code.\
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.