Click to See Complete Forum and Search --> : Format date in long date


flomax
April 9th, 2001, 10:39 AM
In VBscript, i want to format date in long date like : 09/06/98 --> june 9, 1998

PIN
April 9th, 2001, 12:24 PM
Try this
dim sDate as String
sDate=text1.text
sDate=Format(sDate,"mmm dd,yyyy")