samples.jsp
<%@ page contentType="text/html; charset=euc-jp" %>
<% request.setAttribute("color", "white"); %>
<% request.setAttribute("title", "JavaServer Pages 1.1"); %>
<%@ include file="header.jsp" %>
<center>
<table>
<tr>
<td valign=top>
<h3>簡単なサンプル</h3>
<UL>
<LI> <a href="hello.jsp">「ハロー ワールド」のループ処理</a><br>
<LI> <a href="colorsize.jsp">増加する ColorSizeBean</a><br>
<LI> <a href="javascript.jsp">JavaScript の使用例</a><br>
</UL>
</td>
<td valign=top>
<h3>HTML の例</h3>
<UL>
<LI> <a href="qstring.jsp">URL からのクエリ文字列の取得 </a><br>
<LI> <a href="form.jsp">HTML フォームの使用</a><br>
</UL>
</td>
</tr>
</table>
</center>
<p>
<%@ include file="footer.html" %>
</BODY>
</HTML>