MVC3 脚手架视图中的分页
所以使用 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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
也许这可以帮助您: http://www.asp.net/entity-framework/tutorials/sorting-filtering-and-paging-with-the-entity-framework-in-an-asp-net-mvc-application< /a>
您必须在控制器中实现分页,并在视图中添加代码,如我给您的链接。
Maybe this can help you: http://www.asp.net/entity-framework/tutorials/sorting-filtering-and-paging-with-the-entity-framework-in-an-asp-net-mvc-application
You have to implement a paging in controller and in the view add code like the link that i have given to you.
我使用这个 http://blogs.taiga。 nl/martijn/2008/08/27/paging-with-aspnet-mvc/
它还支持 ajax 和
易于实现的区域。
I use this one http://blogs.taiga.nl/martijn/2008/08/27/paging-with-aspnet-mvc/
It's support also ajax and areas
Easy to implement.
完整的 msdn 文章,其中包含示例代码
在 ASP.NET MVC 应用程序中使用实体框架进行排序、过滤和分页
a complete msdn article with sample code
Sorting, Filtering, and Paging with the Entity Framework in an ASP.NET MVC Application