WIP examples: spring
[percentcodec] / examples / spring / src / main / webapp / page-with-include.jsp
1 <%@page contentType="text/html" pageEncoding="UTF-8" session="false" buffer="1kb" %>
2 <%@taglib uri="/WEB-INF/c.tld" prefix="c"%>
3 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
4
5 <html>
6   <head>
7     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8     <title>Page with include</title>
9     <link rel="stylesheet" type="text/css" media="all" href="/default.css">
10   </head>
11   <body>
12     <h1>Hello World!</h1>
13     <c:forEach var="i" begin="1" end="100" step="1">${i}:<jsp:include page="/WEB-INF/included.jsp" /></c:forEach>
14   </body>
15 </html>