[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?
答案 0 :(得分:2)
HH
的{p> 00-24 hours
和hh
的{{1}}
所以,替换
AM/PM
与
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd hh:mm:ss}")]
答案 1 :(得分:1)
您可以尝试:
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd HH:mm:ss}")]
^^
|___ This will specify the time as 24hours