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.
58 lines
2.1 KiB
58 lines
2.1 KiB
<%-- |
|
Document : template-main |
|
Created on : 2011. 1. 18, 오전 11:13:19 |
|
Author : bhs |
|
--%> |
|
|
|
<%@page contentType="text/html" pageEncoding="UTF-8"%> |
|
<%@page import="javax.jdo.PersistenceManager"%> |
|
<%@page import="kr.co.kihyun.lang.MLong"%> |
|
<%@page import="kr.co.kihyun.moumi.MoumiConfig"%> |
|
<%@page import="kr.co.kihyun.beans.entity.TotDoc"%> |
|
<%@page import="kr.co.kihyun.beans.entity.util.PMF"%> |
|
|
|
<% |
|
PersistenceManager pm = PMF.get().getPersistenceManager(); |
|
TotDoc totDoc = pm.getObjectById(TotDoc.class, MLong.parseLong(request.getParameter("docID"))); |
|
%> |
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
|
"http://www.w3.org/TR/html4/loose.dtd"> |
|
|
|
<html> |
|
<head> |
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
|
<title><%=MoumiConfig.getTitle()%></title> |
|
<link rel="stylesheet" href="/totsys/common/css/text.css" type="text/css"> |
|
<link rel="stylesheet" href="/totsys/common/css/kecttep.css" type="text/css"> |
|
<link rel="stylesheet" href="/totsys/common/css/SquareButtons.css" type="text/css"> |
|
</head> |
|
<body> |
|
<table width="100%" border="0" cellpadding="0" cellspacing="0"> |
|
<jsp:include page="/totsys/common/inc/totper/top/top.jsp" flush="true" /> |
|
<tr> |
|
<td> </td> |
|
<td valign="top"> |
|
<table width="100%" border="0" cellspacing="0" cellpadding="0"> |
|
<jsp:include page="/totsys/common/inc/title/title.jsp" flush="true" /> |
|
<tr> |
|
<td class="kecttep_list_tdmenu"><%= MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.doc") %></td> |
|
<td class="kecttep_list_tdmenu"><%= MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.form") %></td> |
|
</tr> |
|
<tr> |
|
<td class="kecttep_list_graytd"><%= totDoc.getName() %></td> |
|
<td class="kecttep_list_graytd"><%= totDoc.getForm() %></td> |
|
</tr> |
|
</table> |
|
</td> |
|
</tr> |
|
</table> |
|
<div> |
|
<a class="blueButton" href="#" onclick="alert();"> |
|
<span class="right"> |
|
<%=MoumiConfig.getMessageBundle().getString("moumi.message.button_large.next")%> |
|
</span> |
|
</a> |
|
</div> |
|
</body> |
|
</html>
|
|
|