在 MVC 剃刀,我把当前的日期在数据库这样. 。
model.Returndate = DateTime.Now.Date.ToShortDateString();
Since the database field is a datetime datatype and I am converting the current date to string format, this is not working.. how can I do this? I am doing the string format because I want the date in mm/dd/yyyy format and not in mm/dd/yyyy hh:mm:ss time format..
编辑:
在我的控制器里
var model = new ViewModel();
model.ReturnDate = DateTime.Now;
return PartialView("PartialView", model);
在局部视图中,我看到了
@Html.EditorFor(model => model.Returndate)
这是其显示日期为日期和时间在一起... 我想只是日期显示。现在不是时候。我希望这次剪辑能解释得更清楚。