How to covert mm/dd/yyyy to dd/mm/yyyy - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T23:23:04Zhttp://stackoverflow.com/feeds/question/801818http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/801818/how-to-covert-mm-dd-yyyy-to-dd-mm-yyyy0How to covert mm/dd/yyyy to dd/mm/yyyyramyatk062009-04-29T10:51:37Z2009-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#8018364Answer by Fredrik Mörk for How to covert mm/dd/yyyy to dd/mm/yyyyFredrik Mörk2009-04-29T10:58:05Z2009-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#8018510Answer by Vadim for How to covert mm/dd/yyyy to dd/mm/yyyyVadim2009-04-29T11:04:10Z2009-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>