Моя модель:
public class EntryModel
{
[Required]
public string Date { get; set; }
public string Car { get; set; }
public string Engine { get; set; }
public string User { get; set; }
public int CarCod { get; set; }
public int EngineCod { get; set; }
}
My View:
<%=Html.Label("Car")%>
<%=Html.Text("Car", car,new { @class = js_car")%>
<%=Html.ValidationMessageFor(x=>x.Car) %>
<%=Html.TextBox("CarCod", carCod, new { @class = "js_car", @style = "display:none;",@id="_car_cod" })%>
Моя проблема:
При публикации данных «CarCod» всегда выдает ошибку в ModelState, что делает и ModelState.IsValid и Html.ValidationSummary бесполезными.
У меня уже есть обходные пути для этого (т.е. я их не использую), но было бы очень приятно узнать, почему.