我正在做网上所说的所有内容,以设置日期日期格式,但没有成功。
在我的模特中:
//[DataType(DataType.DateTime)] I TRIED WITH AND WITHOUT THIS LINE
[Display(Name = "Release Date")]
[DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}")]
public DateTime? ReleaseDate { get; set; }
在我看来,只是
@Html.TextBoxFor(model => model.ReleaseDate, "{0:dd/mm/yyyy}",new { @class = "form-control text-box single-line" })
我尝试以这种方式进入2016年5月14日:2016年5月14日,它不起作用。要获得我的“可能第14天”,我仍然需要输入05/14/2016。谁能解释我为什么会这样呢? 谢谢