Sample code for 30+ languages & platforms
Classic ASP

Example: Http.GenTimeStamp method

Demonstrates the GenTimeStamp method.

Chilkat Classic ASP Downloads

Classic ASP
<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>