JBuilderX中创建web模块,
三个页面,login.htm;execute.jsp;error.jsp;
error.jsp源码:
1
2<%@ page contentType="text/html; charset=gb2312" isErrorPage="true"%>
3<%@ page import="java.sql.*"%>
4<%@ page import="java.sql.SQLException"%>
5<html>
6<head>
7<title>error</title>
8</head>
9<body bgcolor="#ffffff">
10<%
11 if(exception instanceof SQLException)
12out.println("发生了数据库操作异常,请和系统管理员联系")
13else out.println("发生了不可知的异常,请和系统管理员联系");
14%>
15</body>
16</html>
错误:
illegal character at line 11
malformed expression(第一行--空行)
------解决方法--------------------------------------------------------
没有分号。
10<%
11 if(exception instanceof SQLException)
12out.println("发生了数据库操作异常,请和系统管理员联系");
13else out.println("发生了不可知的异常,请和系统管理员联系");
14%>