I’m having a bit of trouble getting my head round date formatting in asp, my current date displays like this: 05/04/2010 21:03:14 using this code response.write(”” & rs(“my_date”)) Does anyone know how i can format the date to show just the month, year or day. Something like this: 5th april 2010
I’ve dug up some code on the web that can display todays date but I can’t apply this formatting to my date displayed from a database. looks like this: Response.write FormatDateTime(todaysDate,1)
____________________________________________________________