2

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

Showing items 11 through 11 of 11.

此消息文本是使用生成的PagedListRenderOptions.MinimalWithItemCountText

4

1 回答 1

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}.";
于 2013-04-01T11:11:44.783 回答