PDA

View Full Version : Redirection method



Kyle
07-06-2004, 04:05 PM
I'm going to have a typical redirection script on my new affiliate site to avoid automated Yahoo bans. This is being done in ASP, but that isn't important as this question is not related to programming the script. I need to decide what method to use when sending the visitor to the redirected URL.

So if out.asp?id=5 calls up a link to http://www.cnn.com, what method should I use for the redirect?

Chris what does your out.php do on your sites?

Chris
07-06-2004, 04:07 PM
header("Location: http://www.example.com");

Kyle
07-06-2004, 04:10 PM
Ah.. so you are using php.

Does anyone know a good way to do the ASP equivalent of what Chris is mentioning here?

Kyle
07-06-2004, 04:11 PM
Nevermind got it. It's response.redirect in ASP.

Thx.