src.txt 757 B

123456789101112131415161718192021222324252627282930313233
  1. /* ====================================================================
  2. * The Tmax soft License, Version 1.1
  3. *
  4. * Copyright (c) 1997-2004 The Tmax software.
  5. * All rights reserved.
  6. * html code omitted for readability.
  7. /* ====================================================================
  8. /* range.jsp */
  9. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  10. <%@ page import="java.io.*" %>
  11. <%@ include file="../../upper.jsp"%>
  12. <br>
  13. <html>
  14. <head>
  15. <title>JSTL: Iterator Support -- Simple Range Iteration Example</title>
  16. </head>
  17. <body bgcolor="#FFFFFF">
  18. <h3>Simple Range Iteration</h3>
  19. <h4>1 to 10</h4>
  20. <c:forEach var="i" begin="1" end="10">
  21. <c:out value="${i}"/>
  22. </c:forEach>
  23. </body>
  24. </html>
  25. <%@ include file="../../footer.html" %>