リスト11:エラー表示~error.jsp


<%@ include file="head.jsp" %> ←head.jspを取り込む
<%@ page isErrorPage="true" %>
<html>
<head>
<title>Login error</title>
</head>
<body>
<%
if (exception != null) {
out.println(exception.getMessage());
}
%>
<p>
<a href="login.jsp">もう一度試す</a><br>
</body>
</html>


本文へ戻る