Page forwarding

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I do one of those pages 'You are being redirected to.. Click here if
is does not load in 5 seconds'
?
 
The syntax for the "refresh" meta command is


<meta http-equiv="refresh" content="N; URL=other-web-address">

where N is the approximate number of seconds that you want the current web
page to be displayed before the browser automatically goes to the other web
address. If N = 0, then the browser should go immediately to the other web
address.
 
Tom said:
The syntax for the "refresh" meta command is


<meta http-equiv="refresh" content="N; URL=other-web-address">

where N is the approximate number of seconds that you want the
current web page to be displayed before the browser automatically
goes to the other web address. If N = 0, then the browser should go
immediately to the other web address.

But in addition, you also need a link in the <body>

<a href="redirectpage.html">You are being redirected to redirectpage.html.
Click here if it does not load in 5 seconds</a>
 
Back
Top