Latest web development tutorials
 

VBScript Timer Function


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

< Complete VBScript Reference