index-main.asp
资源名称:OA300.rar [点击查看]
上传用户:cctv0805
上传日期:2010-01-03
资源大小:345k
文件大小:2k
源码类别:
OA系统
开发平台:
ASP/ASPX
- <html>
- <head>
- <title>NET-OA</title>
- <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
- <link rel="stylesheet" href="../inc/style.css" type="text/css">
- <script>
- if (self==top){self.location.href="../default.asp"};
- function tick() {
- var hours, minutes, seconds, ap;
- var intHours, intMinutes, intSeconds;
- var today;
- today = new Date();
- intHours = today.getHours();
- intMinutes = today.getMinutes();
- intSeconds = today.getSeconds();
- if (intHours == 0) {
- hours = "12:";
- ap = "Midnight";
- } else if (intHours < 12) {
- hours = intHours+":";
- ap = "A.M.";
- } else if (intHours == 12) {
- hours = "12:";
- ap = "Noon";
- } else {
- hours = intHours + ":";
- ap = "P.M.";
- }
- if (intMinutes < 10) {
- minutes = "0"+intMinutes+":";
- } else {
- minutes = intMinutes+":";
- }
- if (intSeconds < 10) {
- seconds = "0"+intSeconds+" ";
- } else {
- seconds = intSeconds+" ";
- }
- timeString = hours+minutes+seconds+ap;
- Clock.innerHTML = timeString;
- window.setTimeout("tick();", 1000);
- }
- window.onload = tick;
- </script>
- <STYLE TYPE="text/css">
- <!--
- td { background-repeat: no-repeat; background-position: center center}
- --></STYLE>
- </head>
- <body bgcolor="#FFFFFF" text="#000000" >
- <table id=control width="100%" style="height:expression(document.body.offsetHeight-6)" border="0" cellspacing="0" cellpadding="0" class="borderon">
- <tr> <td align="center" valign="top" BACKGROUND="../images/logo.gif"> <table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%">
- <tr> <td valign="top"><iframe src="../desktop/default.asp" name=iframemain width="100%" height="100%" scrolling="no" marginwidth=0 marginheight=0 frameborder=0 vspace=0 hspace=0></iframe></td></tr>
- </table></td></tr> <tr> <td align="right" valign="MIDDLE" height="40"> <table border="0" cellspacing="0" cellpadding="2">
- <tr>
- <td align="right">程序设计:<FONT COLOR="#FF0000"> 江南行客 </FONT></td>
- </tr>
- <tr> <td align="center" disabled><span style="font-size:11px"> ©2002
- NET-OA All Rights Reserved.<span id="Clock"></span></span></td></tr>
- </table></td></tr> </table>
- </body>
- </html>