Convert date into the format dd-mm-yyyy
How to convert the date (12/24/2009 12:48:00 PM) into the format dd-mm-yy?
I tri开发者_如何学Pythoned the following code:
DateTime.TryParse(12/24/2009 12:48:00 PM,out registereddate);
strregdate = registereddate.ToString("dd-mm-yyyy");
But, the output comes as 24-48-2009. How to convert
Month is "MM", minute is "mm". You want:
DateTime.TryParse(12/24/2009 12:48:00 PM,out registereddate);
strregdate = registereddate.ToString("dd-MM-yy");
精彩评论