Displaying Current Date and Time

Display the current date and time on a web page using Active Server Pages (ASP).

Displaying Current Date and Time
Photo by Joshua Woroniecki / Unsplash

In this ASP code snippet, we'll learn how to display the current date and time on a web page using Active Server Pages (ASP). This can be useful for creating dynamic and up-to-date content on your website, such as showing the last modification time of a page or displaying real-time information.

<% 
Dim currentTime
currentTime = Now
Response.Write("Current Date and Time: " & currentTime)
%>