Automatically got to another page after a timeout.

D

Dhansberry

Here's an easy one (I hope).
How can I tell a web page to automatically go to another page after 5
seconds?
(This is a "thanks for filling out the form" page.)
 
K

Kathleen Anderson [MVP - FrontPage]

In HTML view, add the following to the Head section:

<meta http-equiv="refresh" content="6; URL=http://www.yourwebsite.com">

The value given to 'content' is the number of seconds before the refresh
will take place; the value given to 'URL' is the page you want your visitor
sent to. You may also want to include a text link to the page in case your
visitor's browser does not support the 'refresh'.


--
~ Kathleen Anderson
Microsoft MVP - FrontPage
Spider Web Woman Designs
web: http://www.spiderwebwoman.com/resources/
blog: http://msmvps.com/spiderwebwoman/category/321.aspx
 
Top