<%= Html.TextBoxFor(model => model.Year) %>
我需要在CarController的HttpGet创建操作中返回一个新的Car对象(由于其他要求).
目前,年度文本框中显示零,因为Year属性不允许为NULL.我想在创建视图中显示一个空文本框.我该如何做?
@Html.TextBoxFor(model => model.Year,new { Value = "" })