Change Date Format - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T20:21:34Z http://stackoverflow.com/feeds/question/733187 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/733187/change-date-format 0 Change Date Format ramyatk06 2009-04-09T07:29:18Z 2009-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#733198 3 Answer by itowlson for Change Date Format itowlson 2009-04-09T07:33:01Z 2009-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#733205 2 Answer by Cerebrus for Change Date Format Cerebrus 2009-04-09T07:35:19Z 2009-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>