How do I redirect URL?

DAM

Diamond Member
Jan 10, 2000
6,102
1
76
with ASP


<%Response.Redirect("http://www.gohome.com")%>




dam()
 

Kenji4861

Banned
Jan 28, 2001
2,821
0
0
with HTML

<html>
<head>
<title>Whatever Title You Want</title>
<META HTTP-EQUIV="REFRESH" CONTENT="0;URL=http://www.wheretoredirect.com">
</head>
</html>

You can change the 0 to how many seconds to wait before moving to the next page.