MonthName
The MonthName function will give you the month name that
corresponds to a month number (which may be in the range 1 to 12).
You can retrieve the full month name or an abbreviated version
based on the second argument.
This convenience function eliminates the need to define your own
array of month names in your code.
' display the full month names
For I = 1 To 12 Response.Write MonthName(I) & "<BR>" Next
' display the abbreviated month names
For I = 1 To 12 Response.Write MonthName(I, True) & "<BR>" Next
|
 |

|