JETTY-1434

Add a jsp that exercises jstl.
This commit is contained in:
Jan Bartel 2011-09-26 20:59:37 +10:00
parent 0555cc762f
commit 11ae5c7dd3
2 changed files with 16 additions and 0 deletions

View File

@ -10,6 +10,7 @@
<li><a href="tag2.jsp">JSP 2.0 SimpleTag demo</a><br/>
<li><a href="tagfile.jsp">JSP 2.0 Tag File demo</a><br/>
<li><a href="expr.jsp?A=1">JSP 2.0 Tag Expression</a><br/>
<li><a href="jstl.jsp">JSTL Expression</a><br/>
</ul>
<a href="/">Main Menu</a>

View File

@ -0,0 +1,15 @@
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
</head>
<body>
<h1>JSTL Example</h1>
<hr>
<p>A trivial jstl example
<hr>
<c:forEach var="i" begin="1" end="10" step="1">
<c:out value="${i}" />
<br />
</c:forEach>
</body>
</html>