/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

3/12/2026

Date, Time, and Now Functions Results
Date() 3/12/2026
Time() 6:05:08 AM
Now() 3/12/2026 6:05:08 AM
formatDateTime(Date,0) 3/12/2026
formatDateTime(Date,1) Thursday, March 12, 2026
formatDateTime(Date,2) 3/12/2026
formatDateTime(Time,0) 6:05:08 AM
formatDateTime(Time,2) 12/30/1899
formatDateTime(Time,3) 6:05:08 AM
formatDateTime(Now,0) 3/12/2026 6:05:08 AM
formatDateTime(Now,1) Thursday, March 12, 2026
formatDateTime(Now,2) 3/12/2026
formatDateTime(Now,3) 6:05:08 AM
formatDateTime(Now,4) 06:05