欢迎来到天天文库
浏览记录
ID:37718171
大小:108.00 KB
页数:13页
时间:2019-05-29
《自定义标签分页》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、下面是使用自定义标签分页的方法首先是tld文件(fenYeTag.tld):2.01.0fenyeTag2、ame>fenYeTagorg.itstar.olineExam.usersManage.util.FenYeTagelibactiontruetrueallCounttrue3、lue>truecurrentPageIndextruetruejishutruetrue4、me>methodfalsetrue接下来是标签体FenYeTagelib.javapackageorg.itstar.olineExam.usersManage.util;importjavax.servlet.ServletRequest;importjavax.servlet.jsp.JspException;importjavax.servlet.jsp.tagext.BodyContent;importjavax.
2、ame>fenYeTagorg.itstar.olineExam.usersManage.util.FenYeTagelibactiontruetrueallCounttrue3、lue>truecurrentPageIndextruetruejishutruetrue4、me>methodfalsetrue
3、lue>true
4、me>methodfalsetrue
5、servlet.jsp.tagext.BodyTagSupport;/***@author龚世俊E-mail:gongshijun2005@126.com*@version创建时间:2008-8-11下午12:07:28*类说明,用于分页*/publicclassFenYeTagelibextendsBodyTagSupport{//用户请求的methodprivateStringmethod;//点击时提交处理的url(必须)privateStringaction;//数据库的数据总条数(必须)privateintallCount=0;//显示给用户看的内容privateString
6、outer="";//当前页号(必须)privateintcurrentPageIndex=1;//每页显示的条数(必须)privateintjishu=0;//总页数privateintpageCount=0;/***根据总记录数和每页的基数计算总页数*/publicvoidcountPageCount(){inttemp=this.allCount%this.jishu;if(temp!=0){this.pageCount=allCount/this.jishu+1;}else{this.pageCount=allCount/this.jishu;}}publicvoidsetBo
7、dyContent(BodyContentarg0){super.setBodyContent(arg0);}publicintdoEndTag()throwsJspException{//System.out.println("结束");returnSKIP_BODY;}publicintdoStartTag()throwsJspException{ServletRequestrequest=this.pageContext.getReque
此文档下载收益归作者所有