PC Review


Reply
Thread Tools Rate Thread

Auto Re-direct

 
 
John Parker
Guest
Posts: n/a
 
      20th Mar 2004
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


 
Reply With Quote
 
 
 
 
Steve Easton
Guest
Posts: n/a
 
      20th Mar 2004
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" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> 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
>
>



 
Reply With Quote
 
Andreas Prilop
Guest
Posts: n/a
 
      20th Mar 2004
"Steve Easton" <(E-Mail Removed)> 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?
 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      20th Mar 2004
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" <(E-Mail Removed)> wrote in message
news:200320042201155145%(E-Mail Removed)...
> "Steve Easton" <(E-Mail Removed)> 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?



 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      20th Mar 2004
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" <(E-Mail Removed)> wrote in message
news:200320042201155145%(E-Mail Removed)...
> "Steve Easton" <(E-Mail Removed)> 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?



 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      20th Mar 2004
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" <(E-Mail Removed)> wrote in message
news:200320042201155145%(E-Mail Removed)...
> "Steve Easton" <(E-Mail Removed)> 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?



 
Reply With Quote
 
Jon Spivey
Guest
Posts: n/a
 
      20th Mar 2004
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" <(E-Mail Removed)> 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> ?



 
Reply With Quote
 
David Baxter
Guest
Posts: n/a
 
      21st Mar 2004
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" <(E-Mail Removed)> wrote in message
news:200320042201155145%(E-Mail Removed)...
> "Steve Easton" <(E-Mail Removed)> 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?



 
Reply With Quote
 
John Parker
Guest
Posts: n/a
 
      21st Mar 2004
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" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> 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
>
>



 
Reply With Quote
 
Joe Rohn
Guest
Posts: n/a
 
      21st Mar 2004
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" <(E-Mail Removed)> wrote in message
news:200320042201155145%(E-Mail Removed)...
> 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?



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can I auto direct mails in my folders =?Utf-8?B?TWly?= Microsoft Outlook Discussion 2 30th May 2007 02:27 PM
auto direct cronish Windows XP Internet Explorer 5 13th Feb 2007 11:50 PM
Auto E-Faxing direct from Excel. destroyer Microsoft Excel Misc 0 22nd Aug 2006 09:21 AM
Direct Booking and Auto Reply Email Andy Microsoft Outlook Calendar 3 18th Mar 2004 02:09 AM
Auto re-direct to another page Brian whelton Microsoft Frontpage 1 28th Jan 2004 03:03 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:36 PM.