无法在视图mvc中显示日期

时间:2014-02-06 08:15:21

标签: c# asp.net-mvc-4 date view

我有模特

[DataType(DataType.Date)]
[Display(ResourceType = typeof(Resources.Resources), Name = "txtDateOfBirthday")]
public DateTime? DateOfBirth { get; set; }

我需要在我的观看日期显示,但它不起作用。 我的观点看起来像这样:

@Html.LabelFor(model => model.DateOfBirth, new {@class = "control-label"})
@Html.TextBoxFor(model => model.DateOfBirth, new {@class = "form-control", @type = "date"})
@Html.ValidationMessageFor(model => model.DateOfBirth)

0 个答案:

没有答案