|
|
| |
|
| jsp分页 |
| 作者:乐乐整理 来源:帝网科技 日期:2008年09月08日 点击数: |
jsp分页 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("首页").append("").append(" | "); sb.append("").append("上页").append("").append(" | "); } if (result.getPage().getHasNextPage()) { sb.append("").append("下页").append("").append(" | "); sb.append("").append("尾页").append(""); } sb .append(" 跳转到: for (int i = 1; i <= s; i++) { sb.append(" sb.append(">第").append(i).append("页"); } sb.append(""); sb.append("
| | | | |