How to convert date to mm/dd/yyyy format - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T06:46:49Zhttp://stackoverflow.com/feeds/question/954325http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/954325/how-to-convert-date-to-mm-dd-yyyy-format0How to convert date to mm/dd/yyyy formatramyatk062009-06-05T04:57:01Z2009-06-07T00:52:20Z
<p>Hi guys,</p>
<p>I want to convert dateformat to mm/dd/yyyy. Whatever dateformat is coming in textbox, I want to convert it into mm/dd/yyyy. Can anybody help?</p>
http://stackoverflow.com/questions/954325/how-to-convert-date-to-mm-dd-yyyy-format/954342#9543421Answer by Dror for How to convert date to mm/dd/yyyy formatDror2009-06-05T05:04:40Z2009-06-05T05:10:22Z<p>see <a href="http://msdn.microsoft.com/en-us/library/aa326721%28VS.71%29.aspx" rel="nofollow">MSDN</a> for full details.<br />
You will need to <a href="http://msdn.microsoft.com/en-us/library/w2sa9yss%28VS.80%29.aspx" rel="nofollow">parse</a> the input to a DateTime object and then convert it to any text format you want. </p>
<p>If you are unsure what format you may be getting, maybe it is a good idea to restrict the user to a single format (using validation or better yet a date picker). </p>
http://stackoverflow.com/questions/954325/how-to-convert-date-to-mm-dd-yyyy-format/954365#9543651Answer by tsilb for How to convert date to mm/dd/yyyy formattsilb2009-06-05T05:16:44Z2009-06-07T00:52:20Z<p>First you need to get it into a datetime object. The most common standards work via:</p>
<pre><code>DateTime x = DateTime.Parse(txtDate.Text);
</code></pre>
<p>If you expect a freaky format, you still have to know what format it is:</p>
<pre><code>DateTime x;
DateTime.TryParseExact(txtDate.Text, "YYddd", out x);
</code></pre>
<p>Then simply output the data:</p>
<pre><code>string date = x.ToString("MM/dd/yyyy");
</code></pre>
<p>But you really need to enforce your formatting using regex, validators, scout's honor - <em>something</em>.</p>