asp mvc EditorFor DateTime not displaying
问题 I am trying to display a datetime field retrieved froma database in my razor file with the following: @Html.EditorFor(model => model.RequestDate); I know with 100% certainty the RequestDate is not null, as I examined the model that was passed in the view, and it was the date from the database. However, the datetime textbox still displays "mm/dd/yyyy". I don't know why it is not display the date. Any ideas? Thank you. Here is my model: [Display(Name = "Time")] [DataType(DataType.Date)] public