PDA

View Full Version : dateformat using ASP



http
09 Dec 2006, 12:00 AM
How do I convert 12/15/1985 to 15 December 1985 format using classic ASP?


Thanx in advance

yhgtbfk
10 Dec 2006, 03:50 PM
datepart("d", theDate) & " " & monthname(datepart("m", theDate)) & " " & datepart("yyyy", theDate)