MVC posting IPagedList
问题 I have the following PagedListModel: public class PagedClientViewModel { public int? Page { get; set; } public PagedList.IPagedList<ClientViewModel> Clients { get; set; } } public class ClientViewModel { public string ClientNumber { get; set; } public bool UseThisClient{ get; set; } } My view looks like this: @using (Html.BeginForm("Index", "Home", FormMethod.Get, new { id = "Form" })) { @foreach (var item in Model.Clients) { @Html.DisplayFor(modelItem => item.ClientNumber) @Html.CheckBoxFor