Link to home
Start Free TrialLog in
Avatar of webcast
webcast

asked on

Hiding URL

What is the best way to hid the URL, so people can't see where we are sending them.

I am using ASP on IIS4.0

ASKER CERTIFIED SOLUTION
Avatar of MasseyM
MasseyM

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sybe
sybe

store the urls in a database, give each a unique ID
Point the users to "Redirect.asp?id=..some id number.."
Redirect.asp get the url from the database (based on the id) and send the user there:

<%

code to create a recordset...

Response.redirect(RS("url")
%>