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
|
|
|||||
|
|
|
Update: Given that you want to have a DateTime in the end, you can just parse the original format:
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. |
||
|
|
|
|
If you are dealing with a DateTime object you convert can like this:
|
||
|
|
