From http://www.w3schools.com (Copyright Refsnes Data)

VBScript Second Function


VBScript Reference Complete VBScript Reference

The Second function returns a number between 0 and 59 that represents the second of the minute.

Syntax

Second(time)

Parameter Description
time Required. Any expression that can represent a time

Example 1

document.write(Now & "<br />")
document.write(Second(Now))

Output:

1/15/2002 10:55:51 AM
51

Example 2

document.write(Second(Time))

Output:

51


VBScript Reference Complete VBScript Reference

From http://www.w3schools.com (Copyright Refsnes Data)