Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

window.open() with fullsize

Status
Not open for further replies.

lsyhu

Programmer
Apr 27, 2002
12
US
Hi,

I tried below code to open a window in full screen, but the menu bar, toolbar, status, etc all disappear. How can I open a window in full size with regular browser features? My browser is IE5 and above.

window.open("EditAll.asp?pa_code=" + pa_code + "&deal_name=" + deal_name, 'editWindow',
"scrollbars=yes, resizable=yes, location=yes, status=yes, menubar=yes," +
"width=sceen.availWidth, height=screen.availHeight, fullscreen=yes" );


Thanks.
Lisa
 
Is the ASP page being opend via a link?? Or is it a pop-up??
If its via a link then you can use regular HTML code to open a page: <a herf='somepage.asp' target=&quot;_new&quot;>LINK</a>...this will open the ASP page in a new window, full screen and with the toolbars as well... I have not failed; I merely found 100,000 different ways of not succeding...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top