up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

34% accept rate
2  
You need to be a little bit more specific. Do you have that data in a DateTime variable? In a string? Do you need to output to the Console, to Windows Forms, to a WebPage? – Pablo Santa Cruz Apr 29 '09 at 10:54
feedback

2 Answers

DateTime.ParseExact("12/21/2008", "MM/dd/yyyy", CultureInfo.InvariantCulture).ToString("dd'/'MM'/'yyyy")

Update: Given that you want to have a DateTime in the end, you can just parse the original format:

DateTime.ParseExact("12/21/2008", "MM/dd/yyyy", CultureInfo.InvariantCulture)

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.

link|improve this answer
feedback

If you are dealing with a DateTime object you convert can like this:

yourDateTime.ToString("dd/MM/yyyy"))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.