Redirect

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

Guest

How do I create a page that will automatically redirect to another when opened. For example: A.htm is open and it automatically opens B.ht

Thanks in adavanced

Jim
 
Add a META Refresh tag to the page, inside the <head> section. Example:

<head>
<META HTTP-EQUIV=Refresh CONTENT="5; URL=http://www.takempis.com/">
</head>

This tells the browser to wait 5 seconds and then redirect to the website
URL.

--
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

Jim said:
How do I create a page that will automatically redirect to another when
opened. For example: A.htm is open and it automatically opens B.htm
 
-----Original Message-----
How do I create a page that will automatically redirect
to another when opened. For example: A.htm is open and
it automatically opens B.htm

Add the following tag to your <head> section:

<meta http-equiv="refresh" content="1;url=B.htm">

Jim Buyens
Microsoft FrontPage MVP
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)
|/=========------------
*========----------
 
Back
Top