Cannot use NuGet PagedList ASP.NET MVC # View

后端 未结 7 870
谎友^
谎友^ 2021-02-02 15:24

I can\'t use the following namespace PagedList to use razor @model PagedList.IPagedListin the topmost of view In

7条回答
  •  终归单人心
    2021-02-02 16:08

    BuildStarted referral or existing on at the same time use,

    in controller

    using PagedList;
    using PagedList.Mvc;
    

    and use in view

    @model PagedList.IPagedList
    @using PagedList;
    @using PagedList.Mvc;
    

    and use paging

    @Html.PagedListPager(Model, page => Url.Action("Index", new { page =
    page }))
    

提交回复
热议问题