blob: 066c78bfa404a07da4a138da513694a060e64804 [file] [log] [blame]
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>JSTL: Iterator Support -- Simple Range Iteration Example</title>
</head>
<body bgcolor="#FFFFFF">
<h3>Simple Range Iteration</h3>
<h4>1 to 10</h4>
<c:forEach var="i" begin="1" end="10">
${i} &#149;
</c:forEach>
</body>
</html>