THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

VBScript Timer Function


VBScript Reference Complete VBScript Reference

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

Syntax

Timer

Example

Example

<%

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

%>

The output of the code above will be:

Number of seconds and milliseconds since 12:00 AM: 20894.85
Show Example »

VBScript Reference Complete VBScript Reference