PDA

View Full Version : dateformat using ASP



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


Thanx in advance

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