/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

4/20/2025

Date, Time, and Now Functions Results
Date() 4/20/2025
Time() 9:55:30 AM
Now() 4/20/2025 9:55:30 AM
formatDateTime(Date,0) 4/20/2025
formatDateTime(Date,1) Sunday, April 20, 2025
formatDateTime(Date,2) 4/20/2025
formatDateTime(Time,0) 9:55:30 AM
formatDateTime(Time,2) 12/30/1899
formatDateTime(Time,3) 9:55:30 AM
formatDateTime(Now,0) 4/20/2025 9:55:30 AM
formatDateTime(Now,1) Sunday, April 20, 2025
formatDateTime(Now,2) 4/20/2025
formatDateTime(Now,3) 9:55:30 AM
formatDateTime(Now,4) 09:55