日期时间显示pm和am
本文关键字:am pm 显示 时间 日期 | 更新日期: 2023-09-27 18:10:57
[DisplayName("Date")]
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd hh:mm:ss}")]
public DateTime? Date { get; set; }
日期:2015-09-03 14:22:43
但是显示为:2015-09-03 02:22:43
如何使其显示为2015-09-03 14:22:43?
00-24 hours
为HH
, AM/PM
为hh
所以,替换
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd hh:mm:ss}")]
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd HH:mm:ss}")]
你可以试试:
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd HH:mm:ss}")]
^^
|___ This will specify the time as 24hours