PageListPager没有重载需要4个参数

时间:2018-03-26 08:41:40

标签: asp.net-mvc pagedlist

我正在尝试在分页栏中插入下一个和上一个按钮

 @Html.PagedListPager(Model, PageIndex => Url.Action(ViewContext.RouteData.Values["action"].ToString(), new { PageIndex }), ViewContext.RouteData.Values["action"].ToString(), new PagedListRenderOptions() { LinkToNextPageFormat = "Next", LinkToPreviousPageFormat = "Previous", DisplayLinkToNextPage = PagedListDisplayMode.IfNeeded, DisplayLinkToPreviousPage = PagedListDisplayMode.IfNeeded })

抛出上述错误。

以前没有nextprevious,它工作正常。

@Html.PagedListPager(Model, PageIndex => Url.Action(ViewContext.RouteData.Values["action"].ToString(), new { PageIndex }))

但我需要插入它们。 怎么做?

0 个答案:

没有答案