Time Announcement/Setting

  • Thread starter Thread starter Brian Mailman
  • Start date Start date
B

Brian Mailman

Windows XP
Front Page 2002
http://www.jewishfood-list.com

I'm fairly sure I can find a script or something to put the place/time
on the home page, but how can we put on the current time and date in
Jerusalem? I know this might not exactly be a FP question but it will
have to integrate onto the page, no?

B/
 
All I have that is close is UTC time..
Coordinated Universal Time

<script language="Javascript">
var now=new Date();document.write
(now.toUTCString().substr(0,29));//->
</script>

Not much help but a start...
Maybe someone else will have exactly what you need.

Don
==================
| Windows XP
| Front Page 2002
| http://www.jewishfood-list.com
|
| I'm fairly sure I can find a script or something to put the place/time
| on the home page, but how can we put on the current time and date in
| Jerusalem? I know this might not exactly be a FP question but it will
| have to integrate onto the page, no?
|
| B/
 
Brian,

Your probably going to need a java applet or script for that. If you do a
google search for "world clock" or "current time" java applets, you should be
able to fing something.

JDR
***************
 
Make your page an ASP page and try:

<%=formatdatetime(now() + 10/24)%>

where 10 is the difference in hours between your server's
time zone and Jerusalem's.

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)
|/---------------------------------------------------
*----------------------------------------------------
 
Thanks... I believe the guy that's setting this up is doing it in ASP.
Maybe he'll considering the other suggestions too, thanks everyone for
the variety of responses.

B/
 
Back
Top