在我的模型中,我有具有日期时间类型的 MyDate 属性。我在此模式下使用 DisplayFormat 属性对属性进行签名:
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd/MM/yyyy hh:mm}")]
public DateTime MyDate { get; set; }
在我看来:
...
<%= Html.EditorFor(model => model.Evento.MyDate)%>
...
为什么如果财产的价值是'2011-05-03 14:47',在我看来(进入EditorFor)我看到'03/05/2011 02.47'?
DataFormatString 是正确的!
非常感谢您的回复
阿尔贝托