Im having issues when trying to post a IList back to the controller here is some of the code
My controller
public ActionResult Approvals(ICollection<
ApprovalListModel> model) {
My pages
<%@ Page Inherits="ViewPage
<
IList<
Book>>" %>
<% for (int i = 0; i < ViewData.Model.Count; i++) { %>
<%: Html.TextBoxFor(m => m[i].Title) %>...
But when it posts back it only ever returns the first item and missing data as well