所以使用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>
答案 0 :(得分:4)
您必须在控制器中实现分页,并在视图中添加代码,例如我给您的链接。
答案 1 :(得分:2)
我用这个http://blogs.taiga.nl/martijn/2008/08/27/paging-with-aspnet-mvc/ 它也支持ajax和区域
易于实施。