mvc中 在VIEW中显示 时间的年月日。不要时分秒

在数据库中读出来的时间一般如下: 2011-12-12  20:00:01

要在View中显示时间为2011-12-12

可以使用以下代码:@Html.TextBox("medicineEndDate", String.Format("{0:d}", Model.medicineEndDate).Replace("/", "-"), new { @class = "inp-form" });

你可能感兴趣的:(mvc,数据库,Class)