【发布时间】:2011-11-09 18:53:48
【问题描述】:
在 MVC3 C# 中有一个网站项目,我从数据库中检索信息并在我的视图中显示在一个表中。我想使用分页来每页最多显示五行。一直在互联网上寻找教程,但他们似乎都非常先进来实现它。用 MVC3 进行分页最简单的方法是什么?
看图左下角,看看我说的分页是什么意思
【问题讨论】:
标签: c# asp.net-mvc-3 paging
在 MVC3 C# 中有一个网站项目,我从数据库中检索信息并在我的视图中显示在一个表中。我想使用分页来每页最多显示五行。一直在互联网上寻找教程,但他们似乎都非常先进来实现它。用 MVC3 进行分页最简单的方法是什么?
看图左下角,看看我说的分页是什么意思
【问题讨论】:
标签: c# asp.net-mvc-3 paging
试试PagedList。 MVC 有一个 NuGet package。
@{
ViewBag.Title = "Product Listing"
}
@using PagedList.Mvc; //import this so we get our HTML Helper
@using PagedList; //import this so we can cast our list to IPagedList (only necessary because ViewBag is dynamic)
<!-- import the included stylesheet for some (very basic) default styling -->
<link href="/Content/PagedList.css" rel="stylesheet" type="text/css" />
<!-- loop through each of your products and display it however you want. we're just printing the name here -->
<h2>List of Products</h2>
<ul>
@foreach(var product in ViewBag.OnePageOfProducts){
<li>@product.Name</li>
}
</ul>
<!-- output a paging control that lets the user navigation to the previous page, next page, etc -->
@Html.PagedListPager( (IPagedList)ViewBag.OnePageOfProducts, page => Url.Action("Index", new { page }) )
【讨论】:
另外,这个 NuGet 包也非常有用且易于实现。我强烈建议您使用此实用程序。
https://github.com/martijnboland/mvcpaging
NuGet [PM> 安装包 MvcPaging ]
【讨论】: