show/hide this revision's text 2 added 11 characters in body

First you need to get it into a datetime object. The most common standards work via:

DateTime x = DateTime.Parse(txtDate.Text);

If you expect a freaky format, you still have to know what format it is:

DateTime x= ;
DateTime.TryParseExact(txtDate.Text, "YYddd");
YYddd", out x);

Then simply output the data:

string date = x.ToString("MM/dd/yyyy");

But you really need to enforce your formatting using regex, validators, scout's honor - something.

show/hide this revision's text 1

First you need to get it into a datetime object. The most common standards work via:

DateTime x = DateTime.Parse(txtDate.Text);

If you expect a freaky format, you still have to know what format it is:

DateTime x = DateTime.TryParseExact(txtDate.Text, "YYddd");

Then simply output the data:

string date = x.ToString("MM/dd/yyyy");

But you really need to enforce your formatting using regex, validators, scout's honor - something.