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

VBScript Minute Function


VBScript Reference Complete VBScript Reference

The Minute function returns a number between 0 and 59 that represents the minute of the hour.

Syntax

Minute(time)

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

Example 1

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

Output:

1/15/2002 10:34:39 AM
34

Example 2

document.write(Minute(Time))

Output:

34


VBScript Reference Complete VBScript Reference

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