Date format in ASP.NET
how to change the date time format 2011-09-01 09:39:23 to 2011-Aug-01 09:39:23 in asp.net.
And While displaying it should开发者_运维百科 display the second format.
Use one of the DateTime Format Strings with DateTime.ToString()
In particular, you will want:
yourDateTime.ToString("yyyy-MMM-dd hh:mm:ss");
精彩评论