totalpage = (int)Math.ceil((double)totalrows/MAXROW);
start = (current - 1) * MAXROW;
end = start + MAXROW - 1;
if( end >= totalrows ) end = totalrows - 1;
next = current + 1;
prev = current - 1;
Math.ceil() 올림
MAXROW :3 한 페이지 출력 갯수
totalrows :20 전체 레코드 수
start :11 시작번호
end :9 끝번호
current :4 현재 페이지
next :5 다음 페이지
prev :3 이전 페이지
totalpage :7 전체 페이지
JSP2008. 12. 24. 20:42