我想在我的 MVC4 应用程序中以特定格式显示时间。
[DisplayFormat(DataFormatString = "{0:f}")]
public DateTime Eve_Date { get; set; }
我使用上述格式。
我想要以下格式的日期:Sun, 11 July 2013, 5.30 PM
. 这怎么可能?
我想在我的 MVC4 应用程序中以特定格式显示时间。
[DisplayFormat(DataFormatString = "{0:f}")]
public DateTime Eve_Date { get; set; }
我使用上述格式。
我想要以下格式的日期:Sun, 11 July 2013, 5.30 PM
. 这怎么可能?
试试这个代码,
[DisplayFormat( DataFormatString="{0:ddd, d MMMM yyyy, hh.mm tt}", ApplyFormatInEditMode=true )]
public DateTime Eve_Date { get; set; }
用法,
@Html.EditorFor(m => m.Eve_Date)
尝试这个:
Eve_Date.ToString("ddd, dd MMMM yyyy, h.mm tt")