Click here to Skip to main content
15,920,602 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I've created a kiosk application in ASP.NET and I just want to hide the address bar and Internet Explorer menus.
Please give your experts opinion.

Thanks in advance.
Regards
Posted
Updated 15-Dec-20 2:31am
v2

You can try the references provides by Hiren.

But since you said KIOSK application, it is recommended to not show the type of application (WEB/Windows).

Write a small Windows application with WindowStyle = "None". Add a Browser control and load your page.

AFAIK, you cannot hide,title bar of IE.

Mark it as Answer, if it is helpful.
 
Share this answer
 
v3
Hi,

You can open popup using javascript. like

window.open(ref, 'Site', 'toolbar=no,status=no,menubar=no,location=no,width=550,height=600,scrollbars=yes, resizable=yes,status=no');



but you can not hide address bar of the browser.

Rate this if helpful.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900