This topic is locked

How to NOT to show the URL

11/30/2006 8:18:50 PM
ASPRunnerPro General questions
Alberto author

Hi sergey,
How to NOT to show the URL In the status bar and address bar? I have several pages and projects and don't want anybody to know the location on the pages in any link in all the projects.

Thanks

J
Jane 12/1/2006

Alberto,
there is no reliable way to hide web addresses.

You can hide address bar and status bar.

Modify the link to PHPRunner-created pages for this.

Use this code:

<a href="#" onclick="window.open('http://...../login.asp';, 'Login page', 'toolbar=0,location=0, directories=0, status=0, menubar=0, scrollbars=1, resizable=0, width=1014, height=714, left=0, top=0');">Login</a>


However browsers may display addresses either with this method due to security reasons.

Sergey Kornilov admin 12/1/2006

Alberto,
search Google for "URL masking". The idea is to create an invisible frame where your application runs. In this case you can always have in browser's address line the same address ie. www.yourservername.com

Alberto author 12/1/2006

Thanks Jane and Sergey, that is exactly what we need. I will try it to see how it works.
Thanks a lot