error.jsp

来自「shangwuwangzhan zaixiangouwu」· 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 + -
显示快捷键?