1,不再通过URL来取页面索引,而是通过action的参数,如{pageindex}来设置.
2,增加了传递url参数
3,提供了显示设置属性(如只显示"上一页","下一页"或者只显示"数字")
下面是两个属性设置类:
分页代码:
css样式代码:
使用示例:
<%=Html.PagerBar(new { @class = "PageBar2" }, new PageBarSetting(1000, 10, 0, 5), PageBarType.Previous_Next)%>
PageBarType类型可自由组合设置,如
<%=Html.PagerBar(new { @class = "PageBar2" }, new PageBarSetting(1000, 10, 0, 10), PageBarType.Number_Previous_Next|PageBarType.First)%>