PC Review
Forums
Newsgroups
Microsoft Word
Microsoft Frontpage
Auto Re-direct
Forums
Newsgroups
Microsoft Word
Microsoft Frontpage
Auto Re-direct
![]() |
Auto Re-direct |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
Is there a simple script I can add to my home page to automatically
(seamlessly) take the browser to another page.. For example my domain www.123.test I want to automatically go to www.123.test/otherpage/ I am sure this is simple to do but I don't know how to.. Any assistance appreciated. John Parker |
|
|
|
#2 |
|
Guest
Posts: n/a
|
Use a meta refresh tag between the head tags on the page.
<META HTTP-EQUIV=Refresh CONTENT="10; URL=otherpage.htm"> Will direct to otherpage.htm in 10 seconds. Change 10 to the number of seconds you want. -- Steve Easton Microsoft MVP FrontPage 95isalive This site is best viewed............ ........................with a computer "John Parker" <newsgroup@rightfast.com> wrote in message news:%23VoicwrDEHA.4080@TK2MSFTNGP09.phx.gbl... > Is there a simple script I can add to my home page to automatically > (seamlessly) take the browser to another page.. > > For example my domain www.123.test > > I want to automatically go to www.123.test/otherpage/ > > > I am sure this is simple to do but I don't know how to.. > > Any assistance appreciated. > > John Parker > > |
|
|
|
#3 |
|
Guest
Posts: n/a
|
"Steve Easton" <admin@95isalive.com> wrote:
> Use a meta refresh tag between the head tags on the page. > <META HTTP-EQUIV=Refresh CONTENT="10; URL=otherpage.htm"> This is nonsense! Use a proper HTTP redirect: <http://www.w3.org/QA/Tips/reback.html> BTW: Have you ever read <http://www.xs4all.nl/~wijnands/nnq/nquote.html> ? -- Top-posting. What's the most irritating thing on Usenet? |
|
|
|
#4 |
|
Guest
Posts: n/a
|
The W3C offers recommendations, not standards, and the type of redirect to be used is really based
on the nature of the web site and it requirements. -- ============================================== Thomas A. Rowe (Microsoft MVP - FrontPage) WEBMASTER Resources(tm) http://www.ycoln-resources.com FrontPage Resources, WebCircle, MS KB Quick Links, etc. ============================================== To assist you in getting the best answers for FrontPage support see: http://www.net-sites.com/sitebuilder/newsgroups.asp "Andreas Prilop" <nhtcapri@rrzn-user.uni-hannover.de> wrote in message news:200320042201155145%nhtcapri@rrzn-user.uni-hannover.de... > "Steve Easton" <admin@95isalive.com> wrote: > > > Use a meta refresh tag between the head tags on the page. > > <META HTTP-EQUIV=Refresh CONTENT="10; URL=otherpage.htm"> > > This is nonsense! Use a proper HTTP redirect: > <http://www.w3.org/QA/Tips/reback.html> > > BTW: Have you ever read > <http://www.xs4all.nl/~wijnands/nnq/nquote.html> ? > > -- > Top-posting. > What's the most irritating thing on Usenet? |
|
|
|
#5 |
|
Guest
Posts: n/a
|
1. Not knowing the type of server the poster is using, the simplest answer
/ easiest solution for his is the meta refresh. 2. Yes I have. However the preferred method in the MSFT news groups is top posting, as most of us who post here can remember what we read for the 1 or 2 seconds it takes to get to the next portion of the thread. And yes I know about Quotefix. Not sure about you, but I monitor over 25 news groups and I really don't have time to scroll down. -- Steve Easton Microsoft MVP FrontPage 95isalive This site is best viewed............ ........................with a computer "Andreas Prilop" <nhtcapri@rrzn-user.uni-hannover.de> wrote in message news:200320042201155145%nhtcapri@rrzn-user.uni-hannover.de... > "Steve Easton" <admin@95isalive.com> wrote: > > > Use a meta refresh tag between the head tags on the page. > > <META HTTP-EQUIV=Refresh CONTENT="10; URL=otherpage.htm"> > > This is nonsense! Use a proper HTTP redirect: > <http://www.w3.org/QA/Tips/reback.html> > > BTW: Have you ever read > <http://www.xs4all.nl/~wijnands/nnq/nquote.html> ? > > -- > Top-posting. > What's the most irritating thing on Usenet? |
|
|
|
#6 |
|
Guest
Posts: n/a
|
As for "top posting", this is the preferred method in the FP newsgroup, with all prior content
retained, as many folks do not retain read messages. It is very helpful to know what prior solutions have been offers and what has or has not work without have read all the way to bottom of the post to see any prior replies. -- ============================================== Thomas A. Rowe (Microsoft MVP - FrontPage) WEBMASTER Resources(tm) http://www.ycoln-resources.com FrontPage Resources, WebCircle, MS KB Quick Links, etc. ============================================== To assist you in getting the best answers for FrontPage support see: http://www.net-sites.com/sitebuilder/newsgroups.asp "Andreas Prilop" <nhtcapri@rrzn-user.uni-hannover.de> wrote in message news:200320042201155145%nhtcapri@rrzn-user.uni-hannover.de... > "Steve Easton" <admin@95isalive.com> wrote: > > > Use a meta refresh tag between the head tags on the page. > > <META HTTP-EQUIV=Refresh CONTENT="10; URL=otherpage.htm"> > > This is nonsense! Use a proper HTTP redirect: > <http://www.w3.org/QA/Tips/reback.html> > > BTW: Have you ever read > <http://www.xs4all.nl/~wijnands/nnq/nquote.html> ? > > -- > Top-posting. > What's the most irritating thing on Usenet? |
|
|
|
#7 |
|
Guest
Posts: n/a
|
Hi Andreas,
I'd agree with not usng meta but a "proper http redirect" can only be done from the server - maybe the user doesn't have that functionality available. If they don't I'd use <script type="text/javascript"> location.replace('otherpage.htm'); </script> <noscript> <META HTTP-EQUIV=Refresh CONTENT="0; URL=otherpage.htm"> </noscript> As for your second point about posting style - top posting is very much encouraged in this newsgroup and has been the norm here for as long as I can remember (~5 years.) We tend to frown on people coming in here telling us to how to run things, however "right" you feel you may be. Jon Microsoft MVP - FP Andreas Prilop wrote: > "Steve Easton" <admin@95isalive.com> wrote: > >> Use a meta refresh tag between the head tags on the page. >> <META HTTP-EQUIV=Refresh CONTENT="10; URL=otherpage.htm"> > > This is nonsense! Use a proper HTTP redirect: > <http://www.w3.org/QA/Tips/reback.html> > > BTW: Have you ever read > <http://www.xs4all.nl/~wijnands/nnq/nquote.html> ? |
|
|
|
#8 |
|
Guest
Posts: n/a
|
To add to what the others have said, what is "improper" about using the
refresh as was suggested? Just because there is more than one solution doesn't make any of them "wrong"... "Andreas Prilop" <nhtcapri@rrzn-user.uni-hannover.de> wrote in message news:200320042201155145%nhtcapri@rrzn-user.uni-hannover.de... > "Steve Easton" <admin@95isalive.com> wrote: > > > Use a meta refresh tag between the head tags on the page. > > <META HTTP-EQUIV=Refresh CONTENT="10; URL=otherpage.htm"> > > This is nonsense! Use a proper HTTP redirect: > <http://www.w3.org/QA/Tips/reback.html> > > BTW: Have you ever read > <http://www.xs4all.nl/~wijnands/nnq/nquote.html> ? > > -- > Top-posting. > What's the most irritating thing on Usenet? |
|
|
|
#9 |
|
Guest
Posts: n/a
|
I thank-you all for your very valuable feedback..
It is true I do not have direct server access and I am assuming most don't either.. The refresh method works great for many of my needs but this one I was looking for a seamless (no delay) redirect.. I think I have some good info to work with and again I appreciate all your help. John Parker "John Parker" <newsgroup@rightfast.com> wrote in message news:%23VoicwrDEHA.4080@TK2MSFTNGP09.phx.gbl... > Is there a simple script I can add to my home page to automatically > (seamlessly) take the browser to another page.. > > For example my domain www.123.test > > I want to automatically go to www.123.test/otherpage/ > > > I am sure this is simple to do but I don't know how to.. > > Any assistance appreciated. > > John Parker > > |
|
|
|
#10 |
|
Guest
Posts: n/a
|
Well I took the time out to read the page Last Updated: Sunday, October 29,
2000 ....by any chance did you see this part: "Therefore, we recommend that you use the "standard" quoting style described here unless you have clear evidence that people in a particular newsgroup actively prefer another style" -- Joe Forum Crafters: http://www.forumcrafters.com FrontPage Users Forums: http://www.timeforweb.com/frontpage "Andreas Prilop" <nhtcapri@rrzn-user.uni-hannover.de> wrote in message news:200320042201155145%nhtcapri@rrzn-user.uni-hannover.de... > This is nonsense! Use a proper HTTP redirect: > <http://www.w3.org/QA/Tips/reback.html> > > BTW: Have you ever read > <http://www.xs4all.nl/~wijnands/nnq/nquote.html> ? > > -- > Top-posting. > What's the most irritating thing on Usenet? |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 

