con_error.jsp
来自「该系统是一个B/S结构的公司定饭系统,整套软件由JSP编制,希望大家能够多提宝贵」· JSP 代码 · 共 23 行
JSP
23 行
<%@ page contentType="text/html; charset=GB2312"%>
<%@ page import="com.hzs.order.*"%>
<%@ page errorPage="error.jsp"%>
<html>
<head>
<%
if(request.getParameter("error_nm")==null || request.getParameter("error_all")==null)
{
response.sendRedirect("index.jsp");
}
out.print("<title>"+request.getParameter("error_nm")+"</title>");
%>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="css/global.css" type="text/css">
</head>
<body bgcolor="#FFFFFF" text="#000000" background="images/menu.gif">
<%
out.print("<h2>---"+request.getParameter("error_nm")+"---<BR><BR><BR><BR></h2>");
out.print("<p class=\"help\">"+request.getParameter("error_all")+"<BR><BR><input type=\"button\" name=\"bt1\" value=\"返 回\" onclick=\"history.back();\"></p>");
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?