我有一个页面,我正在使用 Nuget 包 PagedList.Mvc 4.3.0.0(MVC4 的最新版本)。问题是,当我列出页面时,它会使我的页面变成一个看起来像
«
显示第 1 到第 5 项,共 17 项。
»
代替« Showing items 1 through 5 of 17. »
我的观点看起来像
<div class="pagedList" >
@Html.PagedListPager(Model, page=> Url.Action("index", new { page }), PagedListRenderOptions.MinimalWithItemCountText)
</div>
关于什么可能是错的任何建议?标准的 CSS 也包括在内。