我从sql的jsp表中有一定数量的数据行(这里没有问题),我用servlet对表进行了分页,页面编号显示如下:
<table border="1" cellpadding="5" cellspacing="5" width="50%" class="beta">
<tr>
<c:forEach begin="1" end="${noOfPages}" var="i">
<c:choose>
<c:when test="${currentPage eq i}">
<td width="1%">${i}</td>
</c:when>
<c:otherwise>
<td width="1%"><a href="ConsultaRecorridos?page=${i}&fec_ini=<%= fechaServicioIni%>&fec_fin=<%= fechaServicioFin%>">${i}</a></td>
</c:otherwise>
</c:choose>
</c:forEach>
</tr>
</table>
问题是,无论我有多少页,它们总是保存在同一行中。
我需要的是一种表单,该表单在一定数量的页面上并创建新行,因为当页面停留在具有40列以上的一行时,它看起来并不好。