我正在使用此视图,那么如何删除此格式dd / mm / yyyy并且不显示任何内容:
模型
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "", ApplyFormatInEditMode = false)]
public Nullable<System.DateTime> PatientDOB_ { get; set; }
查看
@Html.LabelFor(model => model.PatientDOB_, htmlAttributes: new { @class = "control-label col-md-4" })
@Html.EditorFor(model => model.PatientDOB_, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.PatientDOB_, "", new { @class = "text-danger" })