35e490588b388a6145a64ee728d279b71268d120
[percentcodec] / examples / spring / src / main / webapp / page-with-forward.jsp
1 <%@page contentType="text/html" pageEncoding="UTF-8" session="false" buffer="1kb" %>
2 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3
4 <html>
5   <head>
6     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7     <title>Page with forward</title>
8   </head>
9   <body>
10     <h1>Hello World!</h1>
11     <p>This should not be seen, because the page is forwardes to /simple-page.jsp</p>
12     <jsp:forward page="/simple-page.jsp" />
13   </body>
14 </html>