Linking to sites that require login.
In HTML a link with username and password in the URL looks like this
This allows me to connect to the protected site without entering a username and password.
But when I try to redirect in an ASP page like this
I am prompted for username and password.
What is the secret?
In HTML a link with username and password in the URL looks like this
Code:
<a href="[URL unfurl="true"]http://user:password@protected.site.net">[/URL]
But when I try to redirect in an ASP page like this
Code:
Response.Redirect "[URL unfurl="true"]http://user:password@protected.site.net"[/URL]
What is the secret?