Ở topic này có sử dụng:
- Webserver : Apache Tomcat 7.0.27.0
- Netbeans 7.2
- Thư viện: pagertag.jar
Sửa file index.jsp như sau:
HTML:
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib uri="/WEB-INF/taglib139.tld" prefix="pg" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<pg:paging>
<table border="1">
<%
for (int i = 1; i <= 100; i++) {
%>
<pg:item>
<tr>
<td>
Item <%=i%> ... <br />
</td>
</tr>
</pg:item>
<% }
%>
</table>
<pg:index>
<pg:page><%=thisPage%></pg:page>
</pg:index>
</pg:paging>
</body>
</html>
Mặc định sẽ hiển thị 20 item trên 1 page. Các bạn có thể thay đổi theo ý muốn bằng cách thêm thuộc tính pageSize="xx" trong thẻ <pg: paging>.
Chạy thử trang web, layout
Download lib tại đây Nguồn: diendan.gzone.vn
Không có nhận xét nào:
Đăng nhận xét