page.jsp
上传用户:huijianzhu
上传日期:2009-11-25
资源大小:9825k
文件大小:2k
源码类别:

电子政务应用

开发平台:

Java

  1. <%@ page contentType="text/html;charset=GB2312" %>
  2. <!--分页开始-->
  3. <table border="0" cellspacing="3" cellpadding="0" align="left" width="565">
  4. <tr align="center">
  5. <td width="80%"></td>
  6. <td nowrap class="pageStyle">共<font color="red"><%=allCount%></font>记录</td>
  7. <td nowrap class="pageStyle">第<font color="red"><%=currentPage%></font>/<%=allPage%>页
  8. <td nowrap class="pageStyle">
  9.   <% if(currentPage>1){ %>
  10.   <a href="<%=request.getRequestURI()%>?currentpage=1&currentId=<%=currentId%>">首页</a>
  11.   <% }else{ %>首页<%}%>
  12. </td>
  13. <td nowrap class="pageStyle">
  14.   <% if(currentPage>1){ %>
  15.   <a href="<%=request.getRequestURI()%>?currentPage=<%=currentPage-1%>&currentId=<%=currentId%>">上一页</a>
  16.   <% }else{ %>上一页<%}%>
  17. </td>
  18. <td nowrap class="pageStyle">
  19.   <% if(currentPage<allPage){ %>
  20.   <a href="<%=request.getRequestURI()%>?currentPage=<%=currentPage+1%>&currentId=<%=currentId%>">下一页</a>
  21.   <% }else{ %>下一页<%}%>
  22. </td>
  23. <td nowrap class="pageStyle">
  24.   <% if(currentPage<allPage){ %>
  25.   <a href="<%=request.getRequestURI()%>?currentPage=<%=allPage%>&currentId=<%=currentId%>">尾页</a>
  26.   <% }else{ %>尾页<%}%>
  27. </td>
  28. <td nowrap class="pageStyle">第
  29.   <select name="select2" onchange="location.href='<%=request.getRequestURI()%>?currentId=<%=currentId%>&currentPage='+this.options[this.selectedIndex].value;">
  30. <%
  31.   String selectedOption = "";
  32.   for(int i=1;i<=allPage;i++){
  33.    if(i==currentPage){
  34.    selectedOption = "selected";
  35.    }else{
  36.    selectedOption = "";
  37.    }
  38. %>
  39. <option value="<%=i%>" <%=selectedOption%>><%=i%></option>
  40. <%}%>
  41.   </select> 页
  42. </td>
  43. </tr>
  44. </table>
  45. <!--分页结束-->