quel microciclo e li per un testcodice:<%@ page contentType="text/html;charset=UTF-8" language="java" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <html> <head><title>Simple jsp page</title></head> <body> Il tuo nome modificato ( <%=request.getParameter("x")%> ) <jsp:useBean id="nn" class="ihh.primob" /> <c:forEach begin="1" end="5" var="curr"> <c:out value="${curr}" /> ${curr} - neanche cosi funza - </c:forEach> <c:if test="${param.x=='1'}"> <jsp:getProperty name="nn" property="nome" /> </c:if> <c:if test="${param.x!='1'}"> <jsp:getProperty name="nn" property="nome" /> </c:if> </body>