?? exception.jsp
字號:
<%--
* @author Shefali Bansal
* @version 1.0
*
* Name of the Application : Exception.jsp
* Development Environment : Oracle JDeveloper 10g
* Creation/Modification History :
*
* Shefali Bansal 02-Jan-2004 Created
*
* Overview of Application :
* This is the Exception page for the JSP Multimedia application.
* This page is displayed whenever any exception is encountered in
* any of the JSPs of the JSP Multimedia application.
--%>
<%@ page language="java" %>
<%@ page isErrorPage="true" %>
<HTML>
<HEAD>
<TITLE>JSP Multimedia Tag Application: Error Page </TITLE>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<link rel="stylesheet" href="stylesheets/styles.css" type="text/css">
</HEAD>
<BODY text=#000000>
<!-- Main table -->
<TABLE border=0 cellPadding=0 cellSpacing=0 height=58 width=100%>
<TR>
<TD valign="top" width="100%">
<!-- Include the static 'Header.jsp' file -->
<%@ include file="Header.jsp" %>
</TD>
</TR>
<TR>
<TD width="100%">
<table WIDTH ="100%" cellspacing=0 cellpadding=0 height="100%"
bgcolor="#FFFFFF">
<tr>
<TD height="100%">
<!-- 5th table starts here working area and heading -->
<TABLE border=0 cellPadding=0 cellSpacing=0 width="100%">
<!-- Heading of the page goes here -->
<TR>
<TD valign="top" colspan="3" noWrap> </TD>
</TR>
<TR>
<TD valign="top" colspan="3" noWrap> </TD>
</TR>
<TBODY>
<TR>
<TD valign="top" width="4%" noWrap> </TD>
<TD vAlign=top width="93%" align="center">
<form name="LoginFrm" method="post">
<!- Exception displaying table -->
<TABLE BORDER=1>
<TR>
<TD><B>An unexpected error occurred. The name of the exception is:</B></TD>
<TD><%= exception %></TD>
</TR>
<TR>
<TD><B>Message</B></TD>
<TD><%= exception.getLocalizedMessage() %></TD>
</TR>
</TABLE>
</form>
</TD>
<TD width="3%"> </TD>
</TR>
<TR>
<TD valign="top" colspan="3" noWrap> </TD>
</TR>
<TR align="center">
<TD colspan=3><a href="javascript:history.go(-1)"><img
src="images/backbutton.gif" border=0 width="55" height="23" /></a>
<a href="javascript:window.close()"><img src=
"images/closebutton.gif" border=0 width="55" height="23" /></a> </TD>
</TR>
<TR>
<TD colspan=3> </TD>
</TR>
</TBODY>
</TABLE>
</TD>
</tr>
</table>
</td>
</TR>
<TR>
<!-- Include static 'Footer.jsp' file -->
<%@ include file="Footer.jsp" %>
</TR>
</TABLE>
<!-- Main table ends here-->
</BODY>
</HTML>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -