페이징 썸네일형 리스트형 간단한 페이징 템플릿 구현 1. 기본적으로 해당페이지에 포함되는 데이터를 가져오는 로직부분은 구현이 되어 있다고 가정합니다. int totalSize = 300; //총 data수 int PAGEBLOCK = 10; // 1 ~ 10 페이지까지 나열 int rowPerPage 20; // 한 페이지에 보여질 row int totalPage = (int)Math.floor((resultsize-1)/rowPerPage) + 1; int firstPage = (int)Math.floor((Integer.parseInt(pagenum)-1)/PAGEBLOCK) * PAGEBLOCK +1; if ( firstPage totalPage ) lastPage = totalPage; //페이징 스크립트 구현 부 더보기 이전 1 다음