FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

VBScript Timer Function


Full 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: 9522.661
Show Example »

Full Reference Complete VBScript Reference