aspnetpager 获取或设置在显示在用户自定义信息区的用户自定义HTML文本内容。
Posted on 2010-10-24 01:44 路-在继续 阅读(643) 评论(0) 编辑 收藏 举报可以用“%”+属性名+“%”来代替该属性的值,控件在运行时会将“%”+属性名+“%”替换为相应的属性的值,其中的“属性名”仅适用于下列属性:
- RecordCount:记录总数
- PageCount:总页数
- CurrentPageIndex:当前页索引
- StartRecordIndex:当前页起始记录的索引
- EndRecordIndex:当前页最后一条记录的索引
- PageSize:每页显示的记录项数
- PagesRemain:当前页之后剩余的未显示的记录的页数
- RecordsRemain:当前页之后剩余的未显示的记录总项数
示例
下面的代码片段显示如何设置AspNetPager的用户自定义信息;
代码
<webdiyer:aspnetpager id="AspNetPager1" runat="server" horizontalalign="Center"
onpagechanged="AspNetPager1_PageChanged" showcustominfosection="Left" width="100%"
CustomInfoHTML="当前页:%CurrentPageIndex% 总页数:%PageCount% 显示第%StartRecordIndex%条到%EndRecordIndex%条记录">
</webdiyer:aspnetpager>
onpagechanged="AspNetPager1_PageChanged" showcustominfosection="Left" width="100%"
CustomInfoHTML="当前页:%CurrentPageIndex% 总页数:%PageCount% 显示第%StartRecordIndex%条到%EndRecordIndex%条记录">
</webdiyer:aspnetpager>