|
Subject:
|
How do disable Menu bar & address bar for browser
|
|
Posted By:
|
bekim
|
Post Date:
|
1/6/2005 9:24:16 PM
|
Hello Do you use html or Javascript to disable menu bar & address bar for browser.
Also, how to disable these things?
|
|
Reply By:
|
Vadivel
|
Reply Date:
|
1/6/2005 11:30:13 PM
|
<A href="javascript:NewWindow=window.open('/default.asp','NewWindow','width=300,height=200,menubar=0');NewWindow.focus()">New</A>
--menubar=0 does the trick while opening a new window.
Best Regards Vadivel
MVP ASP/ASP.NET http://vadivel.thinkingms.com
|
|
Reply By:
|
Vadivel
|
Reply Date:
|
1/6/2005 11:33:41 PM
|
similarly for addressbar, use addressbar=0 or 1 as per your need.
Best Regards Vadivel
MVP ASP/ASP.NET http://vadivel.thinkingms.com
|