<%@pagecontentType="text/html; charset=UTF-8"%>
<%@pageimport="java.util.Objects"%>
//データが存在しない場合に空文字を置き
userName = Objects.toString(userName, "");
userAge = Objects.toString(userAge, "");
%>
<%-- Servletへの画面遷移(POSTメソッド --%>
<formaction="<%= request.getContextPath() %>/cookie"method="post">
<table>
<tr>
<th>氏名</th>
<td><inputtype="text"name="name"value=<%= userName %>></td>
</tr>
<tr>
<th>年齢</th>
<td><inputtype="text"name="age"value=<%= userAge %> ></td>
</tr>
</table>
<inputtype="submit"value="保存">
<inputtype="checkbox"id="deleteCookie"name="deleteCookie"value="true">
<labelfor="deleteCookie">クッキーを削除する</label>
</form>
</body>