将时间转换为am pm

 DateTime dt = DateTime.Now;
           
           string aa =  string.Format("{0:yyyy-mm-dd hh:mm:ss tt }", dt);
           string cc = aa.Replace("上午", "am").Replace("下午", "pm");
          
           
           Response.Write(cc);


时间am pm
http://msdn.microsoft.com/zh-tw/library/c6dw49cz(d=lightweight,v=VS.95).aspx


DateTime.Parse 方法
http://msdn.microsoft.com/zh-cn/library/kc8s65zs.aspx

 

string.Format 方法

C#日期相关操作
http://www.cnblogs.com/peida/archive/2009/02/19/1394021.html

C#时间格式 AM\ PM

http://www.cnblogs.com/jasonxuvip/archive/2012/02/29/2373727.html

C#日期格式化
http://www.cnblogs.com/wqqblogs/archive/2011/06/14/2080338.html

你可能感兴趣的:(将时间转换为am pm)