//标签处理程序 public int doStartTag() throws JspException { /** 当前页号(从请求对象中得到) */ int pageNo = 1; /** 总记录数(从请求对象中得到) */ int total = 0; /** 总页数(计算得出) */ int totalPage = 1; HttpServletRequest request = (HttpServletRequest) pageContext .getRequest();