-
browser properties?
Hey Everyone,
I'm not even sure how to word this correctly so if I f it up please forgive my ignorance. How can I force an html/asp page to open up in a browser with only the border available(no File menu bars or nav buttons ect) sort of like the advertisement windows you see all over the net.
Thanks
BG
-
Use this:
window.open(URL,NAME,directories='no',menubar='no',scrollbars='no',status='no',toolbar='no')
URL is the url that you want to load in and NAME is the name that you can give the window.
Chris
-
Perfect
Thanks alot !
"B"