IPagedList本地化

时间:2013-04-01 10:52:53

标签: c# asp.net-mvc

我正在使用第三方组件(IPagedList)来实现分页。一切正常,我只需要本地化消息,例如

Showing items 11 through 11 of 11.

此消息文本是使用PagedListRenderOptions.MinimalWithItemCountText

生成的

1 个答案:

答案 0 :(得分:1)

使用以下代码设置自定义本地化格式:

var options = new PagedListRenderOptions();
options.PageCountAndCurrentLocationFormat = "Page {0} of {1}."; //your custom string goes gere
options.ItemSliceAndTotalFormat = "Showing items {0} through {1} of {2}.";