使用MVC3 C#进行分页最简单的方法?

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

有一个 MVC3 C# 网站项目,我从数据库中检索信息并在我的视图中以表格形式呈现。我想使用分页来每页最多显示五行。一直在互联网上寻找教程,但它们似乎都非常先进,可以实现这一目标。使用 MVC3 进行分页最简单的方法是什么?

看图片左下角就知道我说的分页是什么意思了

分页http://www.syncfusion.com/content/en-US/products/feature/user-interface-edition/aspnet-mvc/grid/img/Paging_Larger.jpg

c# asp.net-mvc-3 pagination
2个回答
8
投票

尝试PagedList。有一个用于 MVC 的 NuGet 包

@{
    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 }) )

0
投票

另外,这个 NuGet 包也非常有用且易于实现。我强烈建议您使用这个实用程序。

https://github.com/martijnboland/mvcpaging

NuGet [PM> 安装包 MvcPaging]

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