how do i redirect

S

Steve Easton

Use a meta refresh tag in the head tags of the page.
<META HTTP-EQUIV=Refresh CONTENT="10; URL="http://otherpage.htm">

tells the browser to load http://otherpage.htm 10 seconds after the current
page.


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
J

jc calling

thank you, but it seems to be refreshing it self, to the original page that
loaded.

i put the line within head tag, i put it just before the </head>

is this right?

because it does not seem to work.

thanks again
 
S

Steve Easton

You have it in the right place.
Did you make sure the next page you want loaded is entered correctly in the
refresh tag. If it isn't it will default to the page that is currently open.

Also you may want to use an absolute url. e.g.
URL="http://yourdomain.com/otherpage.htm">


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
Top