最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
jsp分页
时间:2022-07-02 17:23:29 编辑:袖梨 来源:一聚教程网
分页
public int doStartTag() throws JspException {
StringBuffer sb = null;
if (result != null && result.getContent() != null
&& result.getContent().size() > 0) {
sb = new StringBuffer("分页: ");
if (result.getPage().getHasPrePage()){
sb.append("").append(" | ");
sb.append("").append(" | ");
}
if (result.getPage().getHasNextPage()) {
sb.append("").append(" | ");
sb.append("");
}
sb
.append(" 跳转到:
for (int i = 1; i
sb.append("
sb.append(">第").append(i).append("页");
}
sb.append("");
sb.append("
相关文章
- WPF框架Prism中5iewInjection用法介绍 09-16
- WPF框架Prism中模块Module用法 09-16
- WPF框架之Prism介绍 09-16
- ASP.NET Core命令行界面CLI用法 09-16
- ASP.NETCore基础之异常中间件 09-16
- ASP.NET Core中的wwwroot文件夹 09-16