From http://www.w3schools.com (Copyright Refsnes Data)
Complete VBScript Reference
The MonthName function returns the name of the specified month.
| MonthName(month[,abbreviate]) |
| Parameter | Description |
|---|---|
| month | Required. Specifies the number of the month (January is 1, February is 2, etc.) |
| abbreviate | Optional. A Boolean value that indicates if the month name is to be abbreviated. Default is False |
|
document.write(MonthName(8)) Output: August |
|
document.write(MonthName(8,True)) Output: Aug |
Complete VBScript Reference
From http://www.w3schools.com (Copyright Refsnes Data)