[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

jc calling

4/12/2004 12:05:00 PM

how do I get a webpage to redirect.

if a visitor goes to lets say, www.site.com/index.html they get redirected
automatically to www.other.com/page.html

thanks


3 Answers

Steve Easton

4/12/2004 12:21:00 PM

0

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

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


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
"jc calling" <thank you for you valued help> wrote in message
news:OKmEsZIIEHA.1528@TK2MSFTNGP09.phx.gbl...
> how do I get a webpage to redirect.
>
> if a visitor goes to lets say, www.site.com/index.html they get redirected
> automatically to www.other.com/page.html
>
> thanks
>
>


jc calling

4/12/2004 1:33:00 PM

0

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


"Steve Easton" <admin@95isalive.com> wrote in message
news:OxB$AkIIEHA.2928@TK2MSFTNGP10.phx.gbl...
> Use a meta refresh tag in the head tags of the page.
> <META HTTP-EQUIV=Refresh CONTENT="10; URL="http://oth......
>
> tells the browser to load http://oth... 10 seconds after the
current
> page.
>
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> 95isalive
> This site is best viewed..................
> ..............................with a computer
> "jc calling" <thank you for you valued help> wrote in message
> news:OKmEsZIIEHA.1528@TK2MSFTNGP09.phx.gbl...
> > how do I get a webpage to redirect.
> >
> > if a visitor goes to lets say, www.site.com/index.html they get
redirected
> > automatically to www.other.com/page.html
> >
> > thanks
> >
> >
>
>


Steve Easton

4/12/2004 1:52:00 PM

0

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
"jc calling" <thank you for you valued help> wrote in message
news:%23qOlxKJIEHA.3556@TK2MSFTNGP10.phx.gbl...
> 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
>
>
> "Steve Easton" <admin@95isalive.com> wrote in message
> news:OxB$AkIIEHA.2928@TK2MSFTNGP10.phx.gbl...
> > Use a meta refresh tag in the head tags of the page.
> > <META HTTP-EQUIV=Refresh CONTENT="10; URL="http://oth......
> >
> > tells the browser to load http://oth... 10 seconds after the
> current
> > page.
> >
> >
> > --
> > Steve Easton
> > Microsoft MVP FrontPage
> > 95isalive
> > This site is best viewed..................
> > ..............................with a computer
> > "jc calling" <thank you for you valued help> wrote in message
> > news:OKmEsZIIEHA.1528@TK2MSFTNGP09.phx.gbl...
> > > how do I get a webpage to redirect.
> > >
> > > if a visitor goes to lets say, www.site.com/index.html they get
> redirected
> > > automatically to www.other.com/page.html
> > >
> > > thanks
> > >
> > >
> >
> >
>
>