Monday, March 12, 2012

want to hide URL(address bar) when .aspx page launch

I am developing asp.net 1.1 application. I want to hide my URL(addressbar) when I launch my .aspx page.

how to do this

please give me feed back or some code please

thank you

maxmax

This has to be done in client side with javascript using thewindow.open method to specify not to show the address bar

Have a look here at how to do it

http://msdn2.microsoft.com/en-us/library/ms536651.aspx

http://www.javascript-coder.com/window-popup/javascript-window-open.phtml


I dont think it is a good idea to hide the address bar! even if you hide it, there are plenty of ways to see it. One of them is Right click on the window, click on properties there you will find the addressUrl.

HC


Need to use javascript...

window.open("thePage.aspx",null, "height=200,width=e00,status=yes,toolbar=no,menubar=no,location=no");


thank you

you have answered my questions

maxmax

0 comments:

Post a Comment