脚手架视图中的分页MVC3

问题描述 投票:0回答:3

所以使用 EF4 我创建了一个脚手架控制器/视图,所以我的问题是如何以简单/快速的方式将分页添加到我的视图? 这 控制器生成

public ViewResult Index()
        {
            return View(db.Perifericos.ToList());
        }

那个 视图:生成

@model IEnumerable<Paginacion.Models.Perifericos>

<p>
    @Html.ActionLink("Create New", "Create")
</p>
<table>
    <tr>
        <th>
            Nombre
        </th>
        <th>
            Modelo
        </th>
    </tr>

@foreach (var item in Model) {
    <tr>
        <td>
            @Html.DisplayFor(modelItem => item.Nombre)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.Modelo)
        </td>
        <td>
            @Html.ActionLink("Edit", "Edit", new { id=item.idPerifericos }) |
            @Html.ActionLink("Delete", "Delete", new { id=item.idPerifericos })
        </td>
    </tr>
}
</table>
asp.net-mvc-3 pagination scaffolding
3个回答
4
投票

也许这可以帮助您:http://www.asp.net/entity-framework/tutorials/sorting-filtering-and-paging-with-the-entity-framework-in-an-asp-net-mvc-应用

您必须在控制器中实现分页,并在视图中添加代码,如我给您的链接。


2
投票

我用这个http://blogs.taiga.nl/martijn/2008/08/27/paging-with-aspnet-mvc/ 它还支持 ajax 和区域

易于实施。


© www.soinside.com 2019 - 2024. All rights reserved.