我有以下模型屬性MVC視圖中顯示時的日期只需要時間
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:d/M/yyyy}", ApplyFormatInEditMode = true)]
[Display(Name = "Date of Screening")]
public DateTime? ScreeningDate { get; set; }
及以下觀點:
@Html.TextBoxFor(model => model.ScreeningDate, new { @class="date maintainState" })
,但我得到這個標記的文本框:
<input value="18/06/2013 12:00:00 AM" class="date maintainState" ... type="text" />
我想要的值是18/06/2013
它適用於@ Html.EditorFor,但我需要控制類屬性。我究竟做錯了什麼?非常感謝你。
。 http://stackoverflow.com/questions/7124434/display-only-date-and-no-time – Jinesh