PDA

View Full Version : Need some ASP code



HaVoC
March 2nd, 2002, 16:34
I need code for redirecting one page, from one server to another one. Ex. www.yourname.com to www.yourname2747.com I need the code in ASP and html. anyone know the code?

wm2k1
March 2nd, 2002, 16:37
response.redirect "http://somesite.com"

Lokannon
March 2nd, 2002, 17:15
put this in the <head> section:

<META HTTP-EQUIV="refresh" content="10; URL="http://somesite.com">

This will take you to somesite.com. Put it in the page you are redirecting FROM

The "10; means number of seconds.

Tell me if you have any problems.

<: Lokannon :>