Onload command for new page

  • Thread starter Thread starter collin
  • Start date Start date
C

collin

After my index page loads, I'd like to it to autoload the
next, but I don't the codes or commands to do this. Can
anyone help?
 
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
http://www.spiderwebwoman.com/resources/

What You Should Know About the Blaster Worm and Its Variants
http://www.microsoft.com/security/incident/blast.asp
 
-----Original Message-----
After my index page loads, I'd like to it to autoload
the next, but I don't the codes or commands to do this.
Can anyone help?

Add a tag like this immediately after the existing <head>
tag.

<meta http-equiv="refresh" content="5; url=default2.htm">

where 5 is a delay factor in seconds, and default2.htm is
the next pagte you want to display.

Jim Buyens
Microsoft FrontPage MVP
(e-mail address removed)
http://www.interlacken.com
Author of:
*------------------------------------------------------*
|\----------------------------------------------------/|
|| Microsoft Office FrontPage 2003 Inside Out ||
|| Microsoft FrontPage Version 2002 Inside Out ||
|| Web Database Development Step by Step .NET Edition ||
|| Troubleshooting Microsoft FrontPage 2002 ||
|| Faster Smarter Beginning Programming ||
|| (All from Microsoft Press) ||
|/----------------------------------------------------\|
*------------------------------------------------------*
 
Thank you so much--I've been looking for days to figure
this out and I'm exhausted.

-----Original Message-----
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'.
 
Not a good idea if you want to be listed in search engines. Make sure you
also have standard hyperlink to the next page on the page as well.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Back
Top