This is Interesting: Free Magazines for Graphics designers and webmasters  


Home > Archive > Front Page > September 2004 > Last updated





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author Last updated
JCO

2004-09-27, 7:14 pm

Cant seem to find the control that displays the last time a page was
updated? Any help here!


Steve Easton

2004-09-27, 7:14 pm

With a page open click the mouse where you want it inserted then on the Toolbar click Insert > Date
and Time.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer

" JCO" <J.Oliviero@verizon.net> wrote in message news:DfY5d.3995$ku4.2642@trnddc01...
> Cant seem to find the control that displays the last time a page was
> updated? Any help here!
>
>



JCO

2004-09-27, 7:14 pm

I thought that would display the current date and time.
If not, then I need to know how to display that too.

"Steve Easton" <admin@95isalive.com> wrote in message
news:%23Y8P1xLpEHA.556@tk2msftngp13.phx.gbl...
> With a page open click the mouse where you want it inserted then on the

Toolbar click Insert > Date
> and Time.
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> 95isalive
> This site is best viewed............
> .......................with a computer
>
> " JCO" <J.Oliviero@verizon.net> wrote in message

news:DfY5d.3995$ku4.2642@trnddc01...
>
>



Kathleen Anderson [MVP - FrontPage]

2004-09-27, 7:14 pm

Add the current Date and Time to your page:
Dates, dates, and more dates...
http://blogs.msdn.com/lisawoll/arch.../11/153974.aspx
Short: http://javascript.internet.com/cloc...time-short.html
Long: http://javascript.internet.com/cloc...-time-long.html

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


JCO <J.Oliviero@verizon.net> wrote:[color=darkred]
> I thought that would display the current date and time.
> If not, then I need to know how to display that too.
>
> "Steve Easton" <admin@95isalive.com> wrote in message
> news:%23Y8P1xLpEHA.556@tk2msftngp13.phx.gbl...
> news:DfY5d.3995$ku4.2642@trnddc01...

Andrew Murray

2004-09-27, 11:14 pm

In FP 2002 you have a choice under Insert > time and date...


1) time/date page automatically updated
2) time/date page lasted edited.

Isn't that what you want?


To display current date & time, you probably need a small javascript or asp code

like

<%
displaytime(now);
displaydate(now);
%>

or whatever the correct syntax is.

" JCO" <J.Oliviero@verizon.net> wrote in message
news:0bZ5d.7271$Cn.3571@trnddc04...
> I thought that would display the current date and time.
> If not, then I need to know how to display that too.
>
> "Steve Easton" <admin@95isalive.com> wrote in message
> news:%23Y8P1xLpEHA.556@tk2msftngp13.phx.gbl...
> Toolbar click Insert > Date
> news:DfY5d.3995$ku4.2642@trnddc01...
>
>



JCO

2004-09-28, 7:19 pm

I guess I don't know the difference between the two. I see the two options.
Is it your understanding that:
Page last edited .... is as it implies (last time uploaded to server)
Page automtically updated is the current date & Time.

If so, then I need nothing else.


"Andrew Murray" <SPAMadBUSTERmurray@iinet.net.au> wrote in message
news:41589ee0$0$32587$5a62ac22@per-qv1-newsreader-01.iinet.net.au...
> In FP 2002 you have a choice under Insert > time and date...
>
>
> 1) time/date page automatically updated
> 2) time/date page lasted edited.
>
> Isn't that what you want?
>
>
> To display current date & time, you probably need a small javascript or

asp code
>
> like
>
> <%
> displaytime(now);
> displaydate(now);
> %>
>
> or whatever the correct syntax is.
>
> " JCO" <J.Oliviero@verizon.net> wrote in message
> news:0bZ5d.7271$Cn.3571@trnddc04...
the[color=darkred]
>
>



Ronx

2004-09-29, 7:14 am

No, you need a JavaScript clock to show the current time as at the Users
location (why? there is a perfectly good clock in the bottom right of the
screen.), or a server side script (ASP, PHP Perl/CGI) to show the current
time on the server, which may be in a different time zone.

Page last edited is the time and date you opened the page in FrontPage
and saved it.
Page automatically updated is the time and date any part of the page was
changed, including a shared border, include page or the content of the page
itself.

[If the Timestamp is in an include page or shared border, "Page last edited"
is the date and time the Include or border was changed, not the page
itself.]

--
Ron

Reply only to group - emails will be deleted unread.


" JCO" <J.Oliviero@verizon.net> wrote in message
news:v7l6d.10017$dt2.2156@trnddc09...
>I guess I don't know the difference between the two. I see the two
>options.
> Is it your understanding that:
> Page last edited .... is as it implies (last time uploaded to server)
> Page automtically updated is the current date & Time.
>
> If so, then I need nothing else.
>
>
> "Andrew Murray" <SPAMadBUSTERmurray@iinet.net.au> wrote in message
> news:41589ee0$0$32587$5a62ac22@per-qv1-newsreader-01.iinet.net.au...
> asp code
> the
>
>



JCO

2004-09-29, 12:15 pm

My attempts to use Time/Date (both options) resulted in the exact same
display.
I don't understand the two types but did test it out.

I understand the javascripts is the best way and modifued my web to use this
method. The Javascripts works fine.



"Andrew Murray" <SPAMadBUSTERmurray@iinet.net.au> wrote in message
news:41589ee0$0$32587$5a62ac22@per-qv1-newsreader-01.iinet.net.au...
> In FP 2002 you have a choice under Insert > time and date...
>
>
> 1) time/date page automatically updated
> 2) time/date page lasted edited.
>
> Isn't that what you want?
>
>
> To display current date & time, you probably need a small javascript or

asp code
>
> like
>
> <%
> displaytime(now);
> displaydate(now);
> %>
>
> or whatever the correct syntax is.
>
> " JCO" <J.Oliviero@verizon.net> wrote in message
> news:0bZ5d.7271$Cn.3571@trnddc04...
the[color=darkred]
>
>



JCO

2004-09-29, 12:15 pm

Yes I found out. I have already begun to use the Javascripts and it works
fine
Thanks

"Ronx" <ronx917@hotmail.com> wrote in message
news:uF65TxfpEHA.1668@TK2MSFTNGP14.phx.gbl...
> No, you need a JavaScript clock to show the current time as at the Users
> location (why? there is a perfectly good clock in the bottom right of the
> screen.), or a server side script (ASP, PHP Perl/CGI) to show the current
> time on the server, which may be in a different time zone.
>
> Page last edited is the time and date you opened the page in FrontPage
> and saved it.
> Page automatically updated is the time and date any part of the page

was
> changed, including a shared border, include page or the content of the

page
> itself.
>
> [If the Timestamp is in an include page or shared border, "Page last

edited"
> is the date and time the Include or border was changed, not the page
> itself.]
>
> --
> Ron
>
> Reply only to group - emails will be deleted unread.
>
>
> " JCO" <J.Oliviero@verizon.net> wrote in message
> news:v7l6d.10017$dt2.2156@trnddc09...
>
>



Sponsored Links


Copyright 2003 - 2008 forum4designers.com  Software forum  Computer Hardware reviews