script

A

Ashley

Hi,
I am trying to make a script that will detect the current
year and then redirect the person to a specific page for
that year. Can you help?
Thanks
 
J

Jim Buyens

Howdy.

The following script will redirect to a page such as
pagefor2004,htm, pagefor2005.htm, and so forth.

<script>
d = new Date();
document.location.href = "pagefor" + d.getFullYear()
+ ".htm";
</script>

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
J

Jens Peter Karlsen[FP-MVP]

On http://www.javascriptsource.com/ you can find a lot of examples on
how to get the time including the year. It should be easy to modify one
of them for your need.
But why go to the trouble? After all a year doesn't change that often.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.

-----Original Message-----
From: Ashley [mailto:[email protected]]
Posted At: 25. juli 2004 15:45
Posted To: microsoft.public.frontpage.client
Conversation: script
Subject: script


Hi,
I am trying to make a script that will detect the current year and then
redirect the person to a specific page for that year. Can you help?
Thanks
 
A

Ashley

Thanks for that.

Ashley

-----Original Message-----
Howdy.

The following script will redirect to a page such as
pagefor2004,htm, pagefor2005.htm, and so forth.

<script>
d = new Date();
document.location.href = "pagefor" + d.getFullYear()
+ ".htm";
</script>

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------


.
 
A

Andrew Murray

what scripting language?

i.e. php, perl, asp, php, C++, javascript, vbscript ??
 
Top