error.jsp
来自「JAVA+JSP程序系统-华源网络科技论坛」· JSP 代码 · 共 22 行
JSP
22 行
<%@ page contentType="text/html; charset=gb2312" %>
<%@ include file="header.inc" %>
<%
String id = "";
int intid = 0;
id = request.getParameter("id");
intid = new Integer(id).intValue();
String err="ERROR";
if(intid==1)
err="姓名和留言必须填写";
else if(intid==2)
err="数据库错误";
else
err="不明错误";
%>
<center>
<br><br><br><br>
<%= err %>
<br><br><a href="javascript:history.back()">返回</a>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?