在Firefox和Chrome都试了,死活不起作用。即使使用附书光盘的代码,也不起作用。大家出现过这种问题吗?
环境是Windows7+tomcat-7.0.37以下是两个页面的代码:errorTest.jsp文件<%@ page contentType="text/html;charset=GBK" language="java" errorPage="error.jsp" isErrorPage="false" %>
<html>
<head>
<title>欢迎</title>
</head>
<body>
<%!
int b=5;
int c=0;
int n=b/c;
%>
</body>
</html>
error.jsp文件<%@ page contentType="text/html;charset=GBK" language="java" isErrorPage="true" %>
<html>
<head>
<title>欢迎</title>
</head>
<body>
系统出现异常,这是错误提示页面!
</body>
</html>
jsp