基於IPagedList 的 Asp.Net MVC 分頁

來源:互聯網
上載者:User

去年寫過一篇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>&nbsp;</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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.