Files
eapim-online/WebContent/common/errors/error500.jsp
Rinjae a1d74cf004 init
2025-09-05 19:06:22 +09:00

83 lines
2.4 KiB
Plaintext

<%@ page import="java.io.*, java.util.*"%>
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@ page session="true" autoFlush="true"%>
<%@ taglib uri="/WEB-INF/tld/c.tld" prefix="c"%>
<%
Object obj = session.getAttribute("LAST_DECORATOR");
String decoratorName = null;
try {
if (obj != null) {
decoratorName = (String)obj;
}
} catch (Exception e) {
//e.printStackTrace();
}
if (decoratorName == null || decoratorName.equals("")) {
decoratorName = "adapterSnaPage";
}
String errorMessage = (String)request.getAttribute("errorMessage")==null?"":(String)request.getAttribute("errorMessage");
%>
<page:applyDecorator name="<%= decoratorName %>" title="시스템 장애" >
<c:catch>
<html>
<head>
<title>운영관리</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet"
href="<c:url value="/common/css/Sitemapstyle.css" />" type="text/css">
</head>
<body bgcolor="#FFFFFF" text="#000000" topmargin="0">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="626" border="0" cellspacing="0" cellpadding="0"
align="center">
<tr>
<td height="80" width="565"></td>
<td height="330" rowspan="4" width="61"></td>
</tr>
<tr>
<td height="137" width="565"><img
src="<c:url value="/common/image/error01.gif" />" width="565"
height="137"></td>
</tr>
<tr>
<td height="88"
background="<c:url value="/common/image/error_bg.gif" />"
class="left2" width="565"><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>[ 운영관리 시스템 Error ]</b>
<div align="center"><br>
<%=errorMessage%>
<table width="25%" border="0" cellspacing="0" cellpadding="0"
align="right">
<tr>
<td>
<div align="center"><a href="#" onClick="history.back()"><img
src="<c:url value="/common/image/btn6_previous.gif" />"
width="79" height="22" border="0"></a></div>
</td>
</tr>
</table>
</div>
<div align="right"></div>
</td>
</tr>
<td height="25" width="565"><img
src="<c:url value="/common/image/error02.gif" />" width="565"
height="25"></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
</c:catch>
</page:applyDecorator >