4

我想在我的 MVC4 应用程序中以特定格式显示时间。

[DisplayFormat(DataFormatString = "{0:f}")]
public DateTime Eve_Date { get; set; }

我使用上述格式。

我想要以下格式的日期:Sun, 11 July 2013, 5.30 PM. 这怎么可能?

4

2 回答 2

6

试试这个代码,

[DisplayFormat( DataFormatString="{0:ddd, d MMMM yyyy, hh.mm tt}", ApplyFormatInEditMode=true )]
public DateTime Eve_Date { get; set; }

用法,

@Html.EditorFor(m => m.Eve_Date)
于 2013-07-22T07:03:04.543 回答
0

尝试这个:

Eve_Date.ToString("ddd, dd MMMM yyyy, h.mm tt")
于 2013-07-22T07:00:12.647 回答