去年寫過一篇MVC分頁的
自己用的一個ASP.Net MVC分頁拿出來分享下
現在發一個改進版
裡面用到的IPagedList我自己也記不清是從哪裡COPY來的了。呵呵
這裡我就不把IPagedList的代碼貼出來了,要使的下載DEMO自己拿吧。
後台對資料的分頁
public ActionResult Index([DefaultValue(1)]int p,[DefaultValue(10)]int pagesize) { var model = Database.List.OrderByDescending(z=>z.Id).ToPagedList(p-1,pagesize); return View("Index",model); }
個人最近比較喜歡使用DefaultValue
當然也可以寫成
public ActionResult Index(int? p,int? pagesize) { p = p ?? 1; pagesize = pagesize ?? 10; var model = Database.List.OrderByDescending(z=>z.Id).ToPagedList(p-1,pagesize); return View("Index",model); }
這裡ToPagedList 這個擴充方法裡第一個參數是index
懶得去改成page了,所以就用了 p-1
前台中調用
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master"
Inherits="System.Web.Mvc.ViewPage<MvcDemo.IPagedList<MyModel>>" %>
<%= Html.PagerBar(ViewData.Model) %> <table> <thead> <tr> <th>Id</th> <th>姓?名?</th> <th>郵ê箱?</th> <th>個?人?主÷頁3</th> <th>生ú日?</th> <th> </th> </tr> </thead> <tbody> <%foreach (var item in ViewData.Model) {%> <tr> <td><%=item.Id%></td> <td><%=item.Name%></td> <td><%=item.EMail%></td> <td><%=item.Url%></td> <td><%=item.Birthday.ToShortDateString()%></td> <td><%=Html.ActionLink("編輯", "Edit", new {id = item.Id},
new {@class = "d", width = 600})%></td> </tr> <%}%> </tbody> </table>
樣式啥的控制和上一篇差不多我不在這裡說了
DEMO中的:
DEMO下載:/Files/francis67/MvcDemo.rar