Home  |  Latest News  |  Contribute  |  F.A.Q.  |  Account  |  Scripts | About
Search ASPNut:
 
ASP Reference
Server Variables
ASP Glossary
Related Sites

Free Components

HTML Reference
Web Colors
Entities
CSS Level 1
Encode/Decode
Glossary

Our Sponsors
ASP Nuke CMS
Free Auctions
PHP 5 Script
Funktastic Blog
ULost Directory
Team Task

 

 

 

 

 

 

 

 

 

 

 

 

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

Orvado Technologies

ASP Nuke CMS
Free Open Source
Content Manager
HomeFix Boards
Home Remodeling
Message Boards

Contact Us | Contribute | About | Site Map



"All programmers are playwrights and all computers are lousy actors." - Anon

©2007 Orvado Technologies, All Rights Reserved
ASP Nut provides articles and reference documentation for Active Server Page developers.