range.jsp 444 B

1234567891011121314151617181920212223
  1. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  2. <%@ page import="java.io.*" %>
  3. <%@ include file="../../upper.jsp"%>
  4. <br>
  5. <html>
  6. <head>
  7. <title>JSTL: Iterator Support -- Simple Range Iteration Example</title>
  8. </head>
  9. <body bgcolor="#FFFFFF">
  10. <h3>Simple Range Iteration</h3>
  11. <h4>1 to 10</h4>
  12. <c:forEach var="i" begin="1" end="10">
  13. <c:out value="${i}"/>
  14. </c:forEach>
  15. </body>
  16. </html>
  17. <%@ include file="../../footer.html" %>