Is there a way to display the current date and time (live)
in frontpage?

Re: Display current date and time? by Kathleen

Kathleen
Sun May 02 07:24:52 CDT 2004

Add the current Date and Time to your page:

a.. Short: http://javascript.internet.com/clocks/date-time-short.html
b.. Long: http://javascript.internet.com/clocks/date-time-long.html


--
~ Kathleen Anderson
Microsoft MVP - FrontPage
Spider Web Woman Designs
http://www.spiderwebwoman.com/resources/


Steven <anonymous@discussions.microsoft.com> wrote:
> Is there a way to display the current date and time (live)
> in frontpage?

Re: Display current date and time? by Steven

Steven
Sun May 02 11:14:00 CDT 2004

Thanks, that is just what I was looking for!
>-----Original Message-----
>Add the current Date and Time to your page:
>
> a.. Short: http://javascript.internet.com/clocks/date-
time-short.html
> b.. Long: http://javascript.internet.com/clocks/date-
time-long.html
>
>
>--
>~ Kathleen Anderson
>Microsoft MVP - FrontPage
>Spider Web Woman Designs
>http://www.spiderwebwoman.com/resources/
>
>
>Steven <anonymous@discussions.microsoft.com> wrote:
>> Is there a way to display the current date and time
(live)
>> in frontpage?
>.
>

Re: Display current date and time? by Dave

Dave
Tue May 04 12:26:57 CDT 2004

<script language="javascript">

function CurDate() {
var d, s = "";
d = new Date();
s += (d.getMonth() + 1) + "/";
s += d.getDate() + "/";
s += d.getYear();
return(s);
}

</script>

That should work.

Dave
>-----Original Message-----
>Add the current Date and Time to your page:
>
> a.. Short: http://javascript.internet.com/clocks/date-
time-short.html
> b.. Long: http://javascript.internet.com/clocks/date-
time-long.html
>
>
>--
>~ Kathleen Anderson
>Microsoft MVP - FrontPage
>Spider Web Woman Designs
>http://www.spiderwebwoman.com/resources/
>
>
>Steven <anonymous@discussions.microsoft.com> wrote:
>> Is there a way to display the current date and time
(live)
>> in frontpage?
>.
>

Re: Display current date and time? by MD

MD
Tue May 04 14:32:38 CDT 2004

Hi Steven,

Use the Date / Time J-Bots component to format the date / time display however you wish using simple formating strings.
See http://www.websunlimited.com/order/Product/General/current_time.htm

--
Mike -- FrontPage MVP '97 - '02
http://www.websunlimited.com


"Steven" <anonymous@discussions.microsoft.com> wrote in message news:71f801c42ff9$6f884420$a101280a@phx.gbl...
> Is there a way to display the current date and time (live)
> in frontpage?