I have a ThingViewModel with a DateTime property:
public class ThingViewModel
{
public DateTime ConfigDate{get;set;}
}
我的观点是,它进口和进口货物,其文本框是:
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<ThingViewModel>
<% using (Html.BeginForm("Details",
"Things",
FormMethod.Post,
new { id = "SearchForm"})) {% >
<%= Html.TextBoxFor( Model => Model.ConfigDate ) %>
<% } %>
我的《指数行动》将没收国的价值确定到今天:
public ActionResult Index()
{
ThingsViewMode tvm = new ThingsViewModel
{
ConfigDate = DateTime.Now.Date
};
return View(tvm);
}
这一切都是公正的。 然而,在我收到POST表格后采用的详细方法中,所有电子电子计算机检索系统都回过来,其日期价值是01/01/0001 12:00:00 AM>
。
我做了什么错误?