开发者

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");
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜