How to covert mm/dd/yyyy to dd/mm/yyyy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T23:23:04Z http://stackoverflow.com/feeds/question/801818 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/801818/how-to-covert-mm-dd-yyyy-to-dd-mm-yyyy 0 How to covert mm/dd/yyyy to dd/mm/yyyy ramyatk06 2009-04-29T10:51:37Z 2009-04-29T11:04:10Z <p>hi guys, i hve a textbox in which date is coming in mm/dd/yyyy. i want to convert it from mm/dd/yyyy to dd/mm/yyyy in asp.net with vb to a variable which is datetime</p> http://stackoverflow.com/questions/801818/how-to-covert-mm-dd-yyyy-to-dd-mm-yyyy/801836#801836 4 Answer by Fredrik Mörk for How to covert mm/dd/yyyy to dd/mm/yyyy Fredrik Mörk 2009-04-29T10:58:05Z 2009-04-29T10:58:05Z <pre><code>DateTime.ParseExact("12/21/2008", "MM/dd/yyyy", CultureInfo.InvariantCulture).ToString("dd'/'MM'/'yyyy") </code></pre> <p>Update: Given that you want to have a DateTime in the end, you can just parse the original format:</p> <pre><code>DateTime.ParseExact("12/21/2008", "MM/dd/yyyy", CultureInfo.InvariantCulture) </code></pre> <p>The date formats are of use only when presenting the date as a string (internally the date does not have a format; it's just a number). If you want to store it in a DateTime all you need to bother about is to interpret the input correctly.</p> http://stackoverflow.com/questions/801818/how-to-covert-mm-dd-yyyy-to-dd-mm-yyyy/801851#801851 0 Answer by Vadim for How to covert mm/dd/yyyy to dd/mm/yyyy Vadim 2009-04-29T11:04:10Z 2009-04-29T11:04:10Z <p>If you are dealing with a DateTime object you convert can like this:</p> <pre><code>yourDateTime.ToString("dd/MM/yyyy")) </code></pre>