123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <%@ page language="java" pageEncoding="UTF-8"%>
- <html>
- <head>
- <meta http-equiv="Content-Language" content="zh-cn">
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <style type="text/css">
- BODY {
- MARGIN: 0px;
- BACKGROUND-COLOR: #ffffff
- }
- BODY {
- FONT-SIZE: 12px;
- COLOR: #000000
- }
- TD {
- FONT-SIZE: 12px;
- COLOR: #000000
- }
- TH {
- FONT-SIZE: 12px;
- COLOR: #000000
- }
- </style>
- <link href="${pageContext.request.contextPath}/css/Style1.css" rel="stylesheet" type="text/css">
- </HEAD>
- <body>
- <table width="100%" height="70%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <img width="100%" src="${pageContext.request.contextPath}/images/top_01.jpg">
- </td>
- <td width="100%" background="${pageContext.request.contextPath}/images/top_100.jpg">
- </td>
- </tr>
- </table>
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td height="30" valign="bottom" background="${pageContext.request.contextPath}/images/mis_01.jpg">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="85%" align="left">
-
- <font color="#000000"> <script language="JavaScript">
- <!--
- tmpDate = new Date();
- date = tmpDate.getDate();
- month= tmpDate.getMonth() + 1 ;
- year= tmpDate.getYear();
- document.write(year);
- document.write("年");
- document.write(month);
- document.write("月");
- document.write(date);
- document.write("日 ");
- myArray=new Array(6);
- myArray[0]="星期日"
- myArray[1]="星期一"
- myArray[2]="星期二"
- myArray[3]="星期三"
- myArray[4]="星期四"
- myArray[5]="星期五"
- myArray[6]="星期六"
- weekday=tmpDate.getDay();
- if (weekday==0 | weekday==6)
- {
- document.write(myArray[weekday])
- }
- else
- {document.write(myArray[weekday])
- };
- // -->
- </script> </font>
- </td>
- <td width="15%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="16"
- background="${pageContext.request.contextPath}/images/mis_05b.jpg">
- <img
- src="${pageContext.request.contextPath}/images/mis_05a.jpg"
- width="6" height="18">
- </td>
- <td width="155" valign="bottom"
- background="${pageContext.request.contextPath}/images/mis_05b.jpg">
- 用户名:
- <font color="blue"><s:property value="#session.existAdminUser.username"/></font>
- </td>
- <td width="10" align="right"
- background="${pageContext.request.contextPath}/images/mis_05b.jpg">
- <img src="${pageContext.request.contextPath}/images/mis_05c.jpg" width="6" height="18">
- </td>
- </tr>
- </table>
- </td>
- <td align="right" width="5%">
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </HTML>
|