在脚手架视图中分页MVC3

时间:2011-10-27 19:52:24

标签: asp.net-mvc-3 paging scaffolding

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

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>

2 个答案:

答案 0 :(得分:4)

也许这可以帮到你:http://www.asp.net/entity-framework/tutorials/sorting-filtering-and-paging-with-the-entity-framework-in-an-asp-net-mvc-application

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

答案 1 :(得分:2)

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

易于实施。