PC Review


Reply
Thread Tools Rate Thread

how to add current time and random images in FrontPage?

 
 
=?Utf-8?B?VHJpYmJ5?=
Guest
Posts: n/a
 
      3rd Nov 2004
I need to add the current time and date as well as random images whenever the
page is refreshed. I don't know if Frontpage 2003 has those capabilities.
If you know how to do it please share the info. THanks
 
Reply With Quote
 
 
 
 
=?Utf-8?B?SmltIEJ1eWVucw==?=
Guest
Posts: n/a
 
      3rd Nov 2004
The following script displays the current date and time on the Web visitor's
computer.

<script>document.write(new Date());</script>

and this one displays one of thee random pictures.

<script>
pics = new Array("sample10.jpg",
"sample11.jpg",
"sample12.jpg");
curDate = new Date();
curTim = curDate.getTime();
picNum = curTim % pics.length;
document.write("<img src='images/" + pics[picNum] +
"' border='0'>");
</script>

If you want more than three pictures, just enlarge the array.

If the path from your web page to the folder that contains the pictures is
other than images/, you'll need to adjust that, too.

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)
|/---------------------------------------------------
*----------------------------------------------------

"Tribby" wrote:

> I need to add the current time and date as well as random images whenever the
> page is refreshed. I don't know if Frontpage 2003 has those capabilities.
> If you know how to do it please share the info. THanks

 
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
Frontpage 2003 Local current date and time help. =?Utf-8?B?RnJvbnQyMDAz?= Microsoft Frontpage 1 30th Sep 2004 12:10 AM
" The current time on this computer and the current time on the network are diff Microsoft Windows 2000 Advanced Server 2 30th Apr 2004 06:51 PM
The current time on this computer and the current time on the network are differ Dwaine Windows XP Networking 2 2nd Mar 2004 01:48 AM
"the current time on this computer and the current time on the network are diffe Manuel Windows XP General 1 10th Dec 2003 04:50 AM
the current time on this computer and the current time on the network are diff. Microsoft Windows 2000 Setup 1 12th Nov 2003 06:40 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:40 PM.