error.jsp
来自「该系统是jsp+mysql+javabean的大型购物和新闻系统。 修订了1.0」· JSP 代码 · 共 12 行
JSP
12 行
<%@ page contentType="text/html;charset=gb2312" %>
<%@ page isErrorPage="true" %>
<%
String s_exception = "";
if (exception != null) {
s_exception = exception.toString();
int i = s_exception.indexOf(":");
s_exception = s_exception.substring(i+1);
}
%>
<%=s_exception%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?