How can I open my Default.aspx page without Addressbar, Menubar & Statusbar?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Remember it’s the user with an already-opened web browser that chooses to visit your website, effectively Default.aspx page, whether or not the browser is launched by you or a program while testing your website. So a bit of client-side/JavaScript “magic” is needed to modify or fake the desired result based on an already existing browser window…
Using JavaScript, you can launch a new window with those features turned off, and close the old window. For example, IE’s window.open(..) args are specified here.
It provides an example
Details may vary between browser in which case you will likely need to employ browser detection.