Custom datesAllows display of a date in any format required. It's largely based on what the PHP date() function can do.
When I learned PHP, I read about this function and, well, wanted one for my ASP scripts :)
It can take a date string (eg, "10/11/2001 23:12:41") and perform a number of structural changes - based on a defined structure you give it - that result in a formatted date being returned (eg, 10th November, 2001).
There are a large number of options available, such as Month name, Day name, Day number..
Each output option includes an alternative output. So Month name could be either 'November' or 'Nov', etc.