Now I have a resultset that has a 1,000+ number of rows, and I am placing all the values of the resultset in a table. The problem now is that the table is so long so I want to divide it by 100 and store the other 100 in the next page. How can I do it?
This is my codes right now
This is my codes right now This is my codes right now
<div class="TableDesign" >
<table align="center">
<thead>
<tr>
<th>Word 1</th>
<th>Word 2</th>
</tr>
</thead>
<tbody>
<%while(resultset.next()){ %>
<tr>
<td>
<%= resultset.getString(2) %>
</td>
<td>
<%= resultset.getString(3) %>
</td>
<%} %>
</tbody>