ConnectTime Property
The ConnectTime property contains the date the computer connected the last time.
Syntax
[long=] ComputerStat.ConnectTime
|
Possible Values
Long value that retrieves the date.
|
The property is read only.
Remarks
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 first computer's last connection date of the first statistics.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
cStats = SiteCafe.Server.ComputerStats.GetComputerStats(1, 0, 0, 1, 10);
alert(cStats.Item(1).ConnectTime);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top