Full page code: <%@ page language="java" contentType="text/html; charset=ISO-8859-2" pageEncoding="ISO-8859-2"%> <%@ taglib prefix="c" uri="
http://java.sun.com/jsp/jstl/core"%> <%@ taglib prefix="fmt" uri="
http://java.sun.com/jsp/jstl/fmt"%> search results <%@page import="smsPhoneBook.Person"%> <c:choose> <c:when test="${searchform.pagingInfo.first > 1}"> <c:set var="first" value="${searchform.pagingInfo.first-1}"></c:set> </c:when> <c:otherwise> <c:set var="first" value="${searchform.pagingInfo.first}"></c:set> </c:otherwise> </c:choose> <c:choose> <c:when test="${searchform.pagingInfo.islast}"> <c:set var="last" value="${searchform.pagingInfo.last}"></c:set> </c:when> <c:otherwise> <c:set var="last" value="${searchform.pagingInfo.last+1}"></c:set> </c:otherwise> </c:choose> <c:forEach var="pos" begin="${first}" end="${last}"> <c:choose> <c:when test="${searchform.pagingInfo.current!=pos}"> <c:url var="href" value="prepare.htm"> <c:param name="pos" value="${pos}" /> </c:url> <c:set var="href" value="href=${href}"></c:set> </c:when> <c:otherwise> <c:set var="href" value="" /> </c:otherwise> </c:choose> ><c:choose> <c:when test="${(pos == last && !searchform.pagingInfo.islast) || (first > 1 && first==pos)}">...</c:when> <c:otherwise> <c:out value="${pos}" /> </c:otherwise> </c:choose> </c:forEach> <table width="400"> <c:forEach var="member" varStatus="iStatus" items="${searchform.currentPage.current}"> <tr> <td><c:url var="href" value="prepare.htm"> <c:param name="recipient.add" value="${iStatus.index}" /> </c:url> <c:set var="href" value="href=${href}"></c:set> <c:set var="item" value="${member}" scope="request"></c:set> <c:import url="showItem.jsp" /></td> <td>>Hozzáadás a címzettekhez...</td> </tr> </c:forEach> </table>
[Message sent by forum member 'jlaci1' (jlaci1)]
http://forums.java.net/jive/thread.jspa?messageID=317198