<tr align="center" height="20">
<td colspan="6">
<c:if test="${currentPage != 1 }">
<a href="/board/list.kh?page=${currentPage - 1 }">[이전]</a>
</c:if>
<c:forEach var="p" begin="${startNavi }" end="${endNavi }">
<c:if test="${currentPage eq p }">
<b>${p }</b>
</c:if>
<c:if test="${currentPage ne p }">
<a href="/board/list.kh?page=${p }">${p }</a>
</c:if>
</c:forEach>
<c:if test="${maxPage > currentPage }">
<a href="/board/list.kh?page=${currentPage + 1 }">[다음]</a>
</c:if>
</td>
</tr>
지금 니가 보는것이 몇페이진가..........ㅋㅋ
내가 보고 있는 페이지가 진하게 표시된다.