<%@ page errorpage="errorpge.jsp" %>
<html>
<head>
<title>jsp 1.0 error page demo</title>
</head>
<body>
<h1>jsp 1.0 error page demo</h1>
<%
string s = null;
s.getbytes(); //这将给出 nullpointexception例外
%>
</body>
</html>
在出错后以下页面被调用:
<html>
<body bgcolor="black" text="#ffffff">
<%--@ page iserrorpage="true" --%>
<h1> attenion the fellowing error occurs</h1><br>
<pre><%= exception.getmessage() %></pre>
</body>
</html>
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!