LastUpdate Property
The LastUpdate property contains the date of the last update from the server.
Syntax
[long=] Session.LastUpdate
|
Possible Values
Long value that retrieves the date.
|
The property is read only.
Remarks
See the UpdateInterval property for further information.
Dates contain the number of seconds elapsed since midnight (00:00:00), January 1, 1970, coordinated universal time (UTC).
Examples
The following example displays the date of the last update of the first computer's first session.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
sessions = SiteCafe.Server.Sessions.GetSessions(1, 0, 0, 1, 10, true);
alert(sessions.Item(1).LastUpdate);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top