Pass Table Value from View to Controller MVC
Can I pass table td values to controller? View strongly typed: @using (Html.BeginForm("PostClick", "Vendor", FormMethod.Post)) { <table class="tblData"> <tr> <th> @Html.DisplayNameFor(model => model.First().SubmittedDate) </th> <th> @Html.DisplayNameFor(model => model.First().StartDate) </th> </tr> <tr> <td> @Html.DisplayFor(modelItem => item.SubmittedDate) </td> <td> @Html.DisplayFor(modelItem => item.StartDate) </td> </tr> </table> <input type="submit" value="submit" /> } Contoller code: public void PostClick(FormCollection collection) { /*Some Code */ } How to pass table value from view to