23 lines
719 B
Plaintext
23 lines
719 B
Plaintext
<%@ page language="java" contentType="text/html; charset=utf-8"%>
|
|
<%@ page import="java.io.*"%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
<%
|
|
response.setHeader("Pragma", "No-cache");
|
|
response.setHeader("Cache-Control", "no-cache");
|
|
response.setHeader("Expires", "0");
|
|
%>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<jsp:include page="/jsp/common/include/css.jsp"/>
|
|
<jsp:include page="/jsp/common/include/script.jsp"/>
|
|
</head>
|
|
<body>
|
|
<!-- 메뉴권한 미존재 유저 빈 화면 frame 노출 20251126 -->
|
|
<div class="right_box">
|
|
<div class="content_top"></div>
|
|
<div class="content_middle" id="title"></div>
|
|
</div>
|
|
</body>
|
|
</html> |