📄 error.jsp
字号:
<%@page contentType="text/html;charset=GBK"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>错误处理页面</title>
<style type="text/css">
<!--
.style1 {
color: #000000;
font-weight: bold;
}
.style2 {color: #FF0000}
-->
</style>
</head>
<% Exception ex = (Exception)request.getAttribute("Exception"); %>
<body>
<table width="100%" border="1">
<tr>
<td colspan="2"><div align="center"><strong>错误信息显示</strong></div></td>
</tr>
<tr>
<td width="22%" height="141"><span class="style1">错误信息是:</span></td>
<td width="78%"><span class="style2"><%=ex.getMessage()%></span></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -