vote up 0 vote down star

hi guys, I have date in format dd/mm/yyyy .I have to change to mm/dd/yyyy in codebehind of vb. Can anybody help to chenge the format.

flag

33% accept rate

2 Answers

vote up 3 vote down

Use DateTime.ParseExact to parse the dd/mm/yyyy format, then DateTime.ToString to convert the parsed DateTime into mm/dd/yyyy format.

link|flag
vote up 2 vote down
Dim inDate as Date = Date.ParseExact(strDate, "dd/MM/yyyy", New System.Globalization.DateTimeFormatInfo())

Dim strOutDate as String = inDate.ToString("MM/dd/yyyy")
Console.WriteLine(outDate)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.