/home/web-programming/asp/

ASP Date, Time, and Now Functions

The ASP Date(), Time(), and Now() functions are used to return the date or time in various formats.

ASP Coding for Date Function

<%

Response.Write Date()

%>


OR

<%

=Date()

%>


Result

1/17/2026

Date, Time, and Now Functions Results
Date() 1/17/2026
Time() 10:36:30 PM
Now() 1/17/2026 10:36:30 PM
formatDateTime(Date,0) 1/17/2026
formatDateTime(Date,1) Saturday, January 17, 2026
formatDateTime(Date,2) 1/17/2026
formatDateTime(Time,0) 10:36:30 PM
formatDateTime(Time,2) 12/30/1899
formatDateTime(Time,3) 10:36:30 PM
formatDateTime(Now,0) 1/17/2026 10:36:30 PM
formatDateTime(Now,1) Saturday, January 17, 2026
formatDateTime(Now,2) 1/17/2026
formatDateTime(Now,3) 10:36:30 PM
formatDateTime(Now,4) 22:36