Tutorials References Exercises Videos Menu
Paid Courses Website NEW Pro NEW

VBScript Time Function


❮ Complete VBScript Reference

The Time function returns the current system time.

Syntax

Time

Example

Example

<%

response.write("The current system time is: ")
response.write(Time)

%>

The output of the code above will be:

The current system time is: 4:22:52 PM
Show Example »

❮ Complete VBScript Reference