⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 errorpage.jsp

📁 Oracle的J2EE Sample
💻 JSP
字号:
<?xml version = "1.0" encoding = "UTF-8" standalone="yes" ?>
<%--
 * @author  Elangovan
 * @version 1.0
 *
 * Development Environment       : Oracle9i JDeveloper
 * 
 * Name of the File              : ErrorPage.jsp
 *
 * Creation/Modification History :
 *
 *    Elangovan     26-Apr-2002      Created
 *
 * Overview of Application       :
 *
 *  If generic error is thrown this page is displayed to the user. 
 *
--%>

<%@page language="java" %>
<%@ page isErrorPage="true" %>
<%@ page session="true" %>
<%@ page contentType="text/vnd.oracle.mobilexml; charset=UTF-8" %>


<!DOCTYPE SimpleResult PUBLIC "-//ORACLE//DTD SimpleResult 1.1//EN" 
                "http://xmlns.oracle.com/ias/dtds/SimpleResult_1_1_0.dtd">

<SimpleResult>
  <SimpleContainer> 
    <SimpleText>
      <SimpleTextItem>Generic Failure</SimpleTextItem>
      <SimpleBreak/>
      <SimpleTextItem>Check the console for any Error messages</SimpleTextItem>
    </SimpleText>
  </SimpleContainer>
</SimpleResult>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -