post items of webgrid asp.net mvc3
问题 I have these DTO's public class Header { public int HeaderId{get;set;} public int Description{get;set;} public List<HeaderItem> HeaderItems{get;set;} } public class HeaderItem { public int HeaderItemId{get;set;} public string DetailDescription{ get; set; } public bool Selected{ get; set; } } and I have this Controller [HttpPost] public ActionResult PostMethod(Header dto) { ... } and this html @using (Html.BeginForm("PostMethod", "Controller", FormMethod.Post, new { id = "form" })) { @Html