[Display(Name="发布时间:")] [DataType(DataType.Date)] public DateTime PubTime { get; set; }
修改如下:
[Display(Name="发布时间:")] [DataType(DataType.Date)] [DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)] public DateTime PubTime { get; set; }
说明 Html5的 阅读全文>>