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!

Toolbar

Status
Not open for further replies.

Pushkin

Programmer
May 28, 2002
22
0
0
BE
Hi,
does anybody know how I can create an asp-page with a script that opens the page without toolbars.

Thanks
 
Here it is an complete example of it
You can enable some features by using 1 or(yes)
and disable by using 0 or (no)
Code:
window.open("page.asp","_blank","width=780,height=580,top=0,left=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0")

and here 

window.open("page.asp","_blank","width=780,height=580,top=0,left=0,toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=no")
I think the best way is to use yes an no, not shure if 0 and 1 works on every browser

________
George, M
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top