You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.4 KiB
92 lines
2.4 KiB
<%@ page contentType="text/html; charset=UTF-8" |
|
import="java.net.URLDecoder" |
|
import="kr.co.kihyun.lang.Encoder" |
|
import="kr.co.kihyun.lang.MString"%> |
|
<%@page import="kr.co.kihyun.beans.totsys.menu.DefaultMenu"%> |
|
<%@ taglib prefix="trail" uri="/WEB-INF/tlds/TrailTagLib.tld"%> |
|
<% |
|
String title=URLDecoder.decode(MString.checkNull(request.getParameter("title"))); |
|
String desc=URLDecoder.decode(MString.checkNull(request.getParameter("desc"))); |
|
String flag = request.getParameter("flag"); |
|
if(flag==null) flag="00"; |
|
DefaultMenu menu = new DefaultMenu(request); |
|
|
|
try { |
|
%> |
|
<style type="text/css"> |
|
<!-- |
|
.trail a:link { |
|
font-family: "돋움"; |
|
font-size: 15px; |
|
font-style: normal; |
|
line-height: normal; |
|
color: #004080; |
|
text-decoration: none; |
|
} |
|
|
|
.trail a:visited { |
|
font-family: "돋움"; |
|
font-size: 15px; |
|
font-style: normal; |
|
line-height: normal; |
|
color: #3366CC; |
|
text-decoration: none; |
|
} |
|
|
|
.trail a:active { |
|
font-family: "돋움"; |
|
font-size: 15px; |
|
font-style: normal; |
|
line-height: normal; |
|
color: #535353; |
|
text-decoration: none; |
|
} |
|
|
|
.trail a:hover { |
|
font-family: "돋움"; |
|
font-size: 15px; |
|
font-style: normal; |
|
line-height: normal; |
|
color: #FF6600; |
|
text-decoration: underline; |
|
} |
|
--> |
|
</style> |
|
|
|
<tr> |
|
<td style="padding-bottom: 0"> |
|
<table width="100%" height="47" border="0" cellpadding="0" |
|
cellspacing="0" style="margin-top:14px"> |
|
|
|
<% if(flag.equals("99")) { %> |
|
<tr> |
|
<td width="15" valign="top" style="padding-top: 15px"><img src="/totsys/common/images/title_circle.gif" border=0> </td> |
|
<td align="left"> <b><span> <%=title%> </span></b></td> |
|
</tr> |
|
<% } |
|
else |
|
{ %> |
|
<tr> |
|
<td width="10" valign="top" style="padding-top: 15px"><img |
|
src="/totsys/common/images/title_circle.gif" border=0> </td> |
|
<td align="left"> <b><span class="trail"> <% if(MString.isNull(title)|| !MString.isNull(title)) { %> |
|
<trail:trailMenu /> <font size='3' face='굴림'>승인자료<% } %> <% if(!MString.isNull(desc)) { if(!desc.equals(menu.getDocName())){%> |
|
<%= " / "+desc %> <% }} %> </font></span></b></td> |
|
</tr> |
|
<% } %> |
|
|
|
|
|
|
|
</table> |
|
</td> |
|
</tr> |
|
<!--tr> |
|
<td height="15"></td> |
|
</tr--> |
|
<% |
|
}catch(Exception ex){ |
|
ex.printStackTrace(); |
|
out.println(kr.co.kihyun.text.html.ServletUtil.getJavaScript("location='/servlet/kr.co.kihyun.beans.user.HttpSSOLogin?mode=logout';")); |
|
}finally{ |
|
} |
|
%>
|
|
|