我有一个具有 Date 属性的模型。目前,日期同时显示日期和时间,3/12/2012 12:00:00 AM
但我希望它们只是日期3/12/2012
。我尝试以几种不同的方式使用 DisplayFormat 数据属性,但没有任何成功。
<DisplayFormat(ApplyFormatInEditMode:=True, DataFormatString:="{0:MM/dd/yyyy}")>
Public Property ActivityDate As Date
我通过 Html 助手访问该属性:
@Html.EditorFor(Function(model) model.ActivityDate)
为什么这不能正确显示?帮助!