📄 error.jsp
字号:
<%@ page contentType="text/html;charset=GBK"%>
<%@ page import="to.model.Login.*"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>错误页</title>
<style title="text/css">
table{font-size:13px}
</style>
</head>
<body>
<table cellspacing="1" cellpadding="1" border="0" width="800" align="center">
<%
loginItem li=(loginItem)session.getAttribute("user");
if(li==null)
{
response.sendRedirect("OfficeLogin.jsp");
}
%>
<tr>
<td colspan="4" height="1"><hr/></td>
</tr>
<tr bgcolor="#006699">
<td colspan="4" align="center"><font color="White">出现问题:</font></td>
</tr>
<%
String question=(String)request.getAttribute("question");
%>
<tr>
<td height="27"> </td>
<td colspan="2" height="27"><%=question%></td>
<td height="27"> </td>
</tr>
<tr>
<td height="30"> </td>
<td colspan="2" height="30"></td>
<td height="30"> </td>
</tr>
<tr>
<td height="33"> </td>
<td colspan="2" height="33"> </td>
<td height="33"> </td>
</tr>
<tr>
<td height="30"> </td>
<td colspan="2" height="30"> </td>
<td height="30"> </td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -