(Classic ASP) Get Current Date/Time as Timestamp (YYYY-MM-DDThh:mm:ssTZD)
Demonstrates how to get the current system date/time in YYYY-MM-DDThh:mm:ssTZD format.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.CkDateTime")
set dt = Server.CreateObject("Chilkat.CkDateTime")
success = dt.SetFromCurrentSystemTime()
' Get a UTC time.
bLocal = 0
timestamp = dt.GetAsTimestamp(bLocal)
Response.Write "<pre>" & Server.HTMLEncode( "Current UTC Time: " & timestamp) & "</pre>"
' Get a local time.
bLocal = 1
timestamp = dt.GetAsTimestamp(bLocal)
Response.Write "<pre>" & Server.HTMLEncode( "Current Local Time: " & timestamp) & "</pre>"
' Sample output:
'
' Current UTC Time: 2022-03-01T00:48:58Z
' Current Local Time: 2022-02-28T18:48:58-06:00
%>
</body>
</html>
|