%
/************************************************************@@
* Program Name : top.jsp
* Description : 보고자모드 탑
* Author : 강원중
* Create Date : 2004.10.11
* History :
@@************************************************************/
%>
<%@ page contentType="text/html; charset=UTF-8"
import="kr.co.kihyun.beans.user.HttpSSOLogin"
import="kr.co.kihyun.text.html.ServletUtil"
import="java.net.URLDecoder" import="kr.co.kihyun.moumi.Moumi"
import="kr.co.kihyun.lang.MInteger"
import="kr.co.kihyun.beans.user.User"
import="kr.co.kihyun.beans.totsys.menu.MenuBean"%>
<%@ include file="/totsys/common/inc/sec/secure.inc.jsp"%>
<%
try{
/*********** User HttpSSOLogin check ***********/
String connURL="location='/totsys/login/login.jsp';";
if(!HttpSSOLogin.isLogin(request)){
out.println(ServletUtil.alert("작업시간이 종료되었습니다.\\n다시로그인 하시기 바랍니다."));
out.println(ServletUtil.getJavaScript(connURL));
return;
}
/********** session내의 userId **********/
String usID = HttpSSOLogin.getLoginID(request);
String usName = HttpSSOLogin.getUserName(request);
int sysAuth = HttpSSOLogin.getSysAuth(request);
if(sysAuth != Moumi.REPOPER && sysAuth != Moumi.SUB_TOTPER && sysAuth != Moumi.TOTPER){
connURL="history.go(-1);";
out.println(ServletUtil.alert("보고권한이 없습니다.\\n확인하시고 다시 시도해주세요."));
out.println(ServletUtil.getJavaScript(connURL));
return;
}
/****** Parameter ******/
String dirPath = "";
dirPath = URLDecoder.decode(clearXSS(request.getParameter("dirPath"),""), "UTF-8");
MenuBean tempboxMenu = new MenuBean(request, "/totsys/repoper/mydocbox/tempbox/report_list.jsp");
%>
|
|
|
 |
<%
}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{
}
%>