<%@ page language="java" contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%> <% String actionPath = request.getParameter("actionPath"); String sNowPage = request.getParameter("nowPage"); String sTotalCount = request.getParameter("totalCount"); String sCountPerPage = request.getParameter("countPerPage"); String sblockCount = request.getParameter("blockCount"); String searchColumn = request.getParameter("searchColumn"); String searchWord = request.getParameter("searchWord"); int nowPage = (sNowPage == null || sNowPage.trim().equals("")) ? 1 : Integer.valueOf(sNowPage); int totalCount = (sTotalCount == null || sTotalCount.trim().equals("")) ? 0 : Integer.valueOf(sTotalCount); int countPerPage = (sCountPerPage == null || sCountPerPage.trim().equals("")) ? 1 : Integer.valueOf(sCountPerPage); int countPerBlock = (sblockCount == null || sblockCount.trim().equals("")) ? 1 : Integer.valueOf(sblockCount); int totalPage = (int)( (totalCount-1)/countPerPage ) + 1; if(totalPage == 0) totalPage = 1 ; int totalBlock = (int)((totalPage-1)/(countPerBlock)); int nowBlock = (int)((nowPage - 1) / countPerBlock); int firstPage = 0; int prevPage = 0; int nextPage = 0; int lastPage = 0; if (nowBlock > 0) { firstPage = 1; } if( nowPage > 1 ) { prevPage = nowPage - 1; } int startPage = nowBlock * countPerBlock + 1; int endPage = countPerBlock * (nowBlock + 1); if ( endPage > totalPage ) endPage = totalPage; if( nowPage < totalPage ) { nextPage = nowPage + 1; } if( nowBlock < totalBlock ) { lastPage = totalPage; } %>
<%if (firstPage > 0) { %> óÀ½ <%} %> <%if (prevPage > 0) { %> ÀÌÀü <%} %> <%for (int indexI = startPage; indexI <= endPage; indexI++) { %> <%if (indexI == nowPage) { %> <%=indexI %> <%} else { %> [<%=indexI %>] <%} %> <%} %> <%if (nextPage > 0) { %> ´ÙÀ½ <%} %> <%if (lastPage > 0) { %> ¸¶Áö¸· <%} %>