Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

VBScript Timer Function


❮ Complete VBScript Reference

The Timer function returns the number of seconds since 12:00 AM.

Syntax

Timer

Example

Example

<%

response.write("Number of seconds since 12:00 AM: ")
response.write(Timer)

%>

The output of the code above will be:

Number of seconds since 12:00 AM: 60885.88
Show Example »

❮ Complete VBScript Reference