Whatever message this page gives is out now! Go check it out!
MonthAsString(month [, locale])| Parameter | Description |
month | An integer in the range 1 - 12. |
locale | Locale to use instead of the locale of the page when processing the function |
<cfscript>
myLocale=getLocale()
myMonth=5;
monthAsString=monthAsString(myMonth,myLocale)
writeOutput(monthAsString)
</cfscript>