Forums
This topic is locked
redirecting to another page within 5 seconds
Posted 26 Jul 2006 22:22:42
1
has voted
26 Jul 2006 22:22:42 waseem qureshi posted:
Friends, how to redirect a user to anoth page within 5 or more seconds....after coming from a form page... Replies
Replied 27 Jul 2006 13:13:27
27 Jul 2006 13:13:27 Paul Rodger replied:
<HTML>
<HEAD>
<!-- Send users to the location you specified. -->
<TITLE>Redirect Page</TITLE>
<META HTTP-EQUIV="refresh"
CONTENT="5;URL=wwwyoursite.com">
</HEAD>
<BODY>
You will automatically be redireced in 5 seconds, if not
<a href="www.yoursite.com">
click here</a>.
</BODY>
</HTML>
<HEAD>
<!-- Send users to the location you specified. -->
<TITLE>Redirect Page</TITLE>
<META HTTP-EQUIV="refresh"
CONTENT="5;URL=wwwyoursite.com">
</HEAD>
<BODY>
You will automatically be redireced in 5 seconds, if not
<a href="www.yoursite.com">
click here</a>.
</BODY>
</HTML>