How do I convert 12/15/1985 to 15 December 1985 format using classic ASP?
Thanx in advance
By Using FormatDateTime(date,format) Function :
Response.Write(FormatDateTime(#12/15/1985#,vbLongDate))
or
Response.Write(FormatDateTime(#12/15/1985#,1))
output will be :- Sunday, December 15, 1985