Classic ASP
Classic ASP
Example: Http.GenTimeStamp method
Demonstrates theGenTimeStamp method.
Chilkat Classic ASP Downloads
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
set http = Server.CreateObject("Chilkat.Http")
' Return current date/time in the following format: Day, DD Mon YYYY HH:MM:SS GMT
timestamp = http.GenTimeStamp()
Response.Write "<pre>" & Server.HTMLEncode( timestamp) & "</pre>"
' Sample Output:
' Thu, 21 Aug 2025 11:17:31 GMT
%>
</body>
</html>