问题描述
怎么样让它10行一页,还有“上一页”“下一页”首页最后一页,该怎么写代码之前用<c:foreachbegin=''end=''>换成<logic:iterate就不会了,该怎么弄啊,高人指点啊急用!!!!!!<logic:iterateid="questions"name="questionsQuery"type="com.wgh.actionForm.QuestionsForm"scope="request"><bean:defineid="lessonID"name="questions"property="lessonId"type="Integer"/><bean:defineid="taoTiID"name="questions"property="taoTiId"type="Integer"/><tr><tdstyle="padding:5px;"><%=lesson.getLesson(lessonID)%></td><tdstyle="padding:5px;"><%=taoTi.getTaoTi(taoTiID)%></td><tdalign="center"><bean:writename="questions"property="subject"filter="true"/></td><tdalign="center"><bean:writename="questions"property="type"filter="true"/></td><tdalign="center"><html:linkpage="/manage/questions.do?action=questionsModifyQuery"paramId="id"paramName="questions"paramProperty="ID">修改</html:link></td><tdalign="center"><html:multiboxproperty="delIdArray"styleClass="noborder"><bean:writename="questions"property="ID"/></html:multibox></td></tr></logic:iterate>
解决方案
解决方案二:
采用数据库分页比较好,一次只查询10页,第n页查询(n-1)*10到n*10的记录,你点击上一页,下一页的时候只需要把要查询页数n传到后台,后台查询后返回就是这页的内容
解决方案三:
使用logic的话。你还是在后台先处理。那样容易点!