程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 一種新的編程思路(下):附 自動分頁2-1 ntPage.jsp

一種新的編程思路(下):附 自動分頁2-1 ntPage.jsp

編輯:關於JSP

ntPage.jsp(SUN企業級應用的首選)

-------------------------------------------------------------------

<%
    int PAGESIZE = 10;
    int old_PAGESIZE = PAGESIZE ;
 int curPage = 1;
 int pageCount=0;
 int iStart=0;
 int iCount=0;
    int totalRecordCount = ntP.rowCount ;
  boolean onlyOnePage = true ;
 
 try {
   if( request.getParameter("pagesize")!=null )
     PAGESIZE = Integer.parseInt(request.getParameter("pagesize"));
   if( request.getParameter("pagesize_post")!=null )
     PAGESIZE = Integer.parseInt(request.getParameter("pagesize_post")); 
 }catch(Exception ePage13){
  PAGESIZE = old_PAGESIZE ;
 }
  
 if( PAGESIZE < totalRecordCount )
   onlyOnePage = false ;
 try {
   curPage = Integer.parseInt(request.getParameter("page"));
 }catch(Exception e){
  curPage = 1;
 }
 if ( totalRecordCount > 0)
 {
  pageCount = totalRecordCount / PAGESIZE;
  if ( totalRecordCount % PAGESIZE != 0)
    pageCount += 1;
  if (curPage < 1)
    curPage = 1;
  if (curPage > pageCount)
    curPage = pageCount;
  
  iStart = (curPage-1) * PAGESIZE;
  iCount = totalRecordCount - iStart;
  if (iCount > PAGESIZE)
    iCount = PAGESIZE;
  iCount = iStart + iCount ; 
 }
%>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved