Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / template / PopupTemplate.jsp @ 120:ae1d99468601

History | View | Annotate | Download (942 Bytes)

1
<%@ taglib uri="/WEB-INF/tld/struts-tiles" prefix="tiles" %>
2
<%@ taglib uri="/WEB-INF/tld/struts-bean" prefix="bean" %>
3

    
4
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
<html xmlns="http://www.w3.org/1999/xhtml">
6
<head>
7
<%
8
response.setHeader("Cache-Control","no-cache,private,no-store"); //HTTP 1.1
9
response.setHeader("Pragma","no-cache"); //HTTP 1.0
10
response.setDateHeader ("Expires", -1); //prevents caching at the proxy server
11
%>
12
	<title><tiles:getAsString name="title"/></title>
13
	<script type="text/javascript" src="../../js/popup.js"></script>
14
	<tiles:get name="css"/>
15
</head>
16

    
17
<body style="margin-left:5px;">
18

    
19
<table width="100%" height="71" border="0">
20
  <tr class="borderBottom">
21

    
22
   	<td align="center"><img src="../images/header.jpg" style=" width : 740px;"/></td>
23
  </tr>
24
</table>
25

    
26
<tiles:get name="body"/>
27

    
28

    
29

    
30
</body>
31
</html>