Results 1 to 2 of 2

Thread: dateformat using ASP

  1. #1
    Join Date
    Dec 2006
    Posts
    12

    dateformat using ASP

    How do I convert 12/15/1985 to 15 December 1985 format using classic ASP?


    Thanx in advance

  2. #2
    Join Date
    May 2006
    Posts
    27
    datepart("d", theDate) & " " & monthname(datepart("m", theDate)) & " " & datepart("yyyy", theDate)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •