PagedList

 

在DAL内编辑分页代码

PagedList
 public List<information> Showinf(int pageindex,int pagesize,out int totalcount,out int totalpage)
        {
            IQueryable<information> list = db.informations;
            
            totalcount = list.Count();//总条数
            totalpage = Convert.ToInt32(Math.Ceiling(totalcount * 1.0 / pagesize));//总页数
            //分页语句
            return list.OrderBy(m => m.Fid).Skip((pageindex - 1) * pagesize).Take(pagesize).ToList();

        }
PagedList

Controllers:

PagedList
public ActionResult Showinfor( int pageindex = 1, int pagesize = 1)
        {
            
            int totalcount;
            int totalpage;
            var qusy = Dal.Showinf( pageindex, pagesize, out totalcount, out totalpage);
            var list = new StaticPagedList<information>(qusy, pageindex, pagesize, totalcount);
            return View(list);
        }
PagedList

注意要引用:

using PagedList;
using PagedList.Mvc;

 


引用,管理NUGet程序包

下载PageList.Mvc控件程序包

注意需要下载两个程序包,第二个PageList程序包会自动下载

PagedList

 

 


在需要分页的页面引用

@using WebApplication2.Models
@using PagedList;
@using PagedList.Mvc;
@model StaticPagedList<information>

然后直接编写正常的视图页面

最后编写分页翻页控件

@Html.PagedListPager(Model, pageindex=>Url.Action("Showinfor",new { 
   pageindex,
   Cid=Request["Cid"],
   Did=Request["Did"],
}))

PagedList

上一篇:Docker常用命令 InsaneLoafer


下一篇:[LeetCode] 1161. Maximum Level Sum of a Binary Tree 最大层内元素和