vote up 0 vote down star

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

flag

33% 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 at 10:54

2 Answers

vote up 4 vote down
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|flag
vote up 0 vote down

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

yourDateTime.ToString("dd/MM/yyyy"))
link|flag

Your Answer

Get an OpenID
or

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