Change Date Format - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T20:21:34Zhttp://stackoverflow.com/feeds/question/733187http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/733187/change-date-format0 Change Date Formatramyatk062009-04-09T07:29:18Z2009-08-12T10:26:56Z
<p>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.</p>
http://stackoverflow.com/questions/733187/change-date-format/733198#7331983Answer by itowlson for Change Date Formatitowlson2009-04-09T07:33:01Z2009-04-09T07:33:01Z<p>Use DateTime.ParseExact to parse the dd/mm/yyyy format, then DateTime.ToString to convert the parsed DateTime into mm/dd/yyyy format.</p>
http://stackoverflow.com/questions/733187/change-date-format/733205#7332052Answer by Cerebrus for Change Date FormatCerebrus2009-04-09T07:35:19Z2009-04-09T07:35:19Z<pre><code>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)
</code></pre>