index-main.asp
上传用户:cctv0805
上传日期:2010-01-03
资源大小:345k
文件大小:2k
源码类别:

OA系统

开发平台:

ASP/ASPX

  1. <html>
  2. <head>
  3. <title>NET-OA</title> 
  4. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312"> 
  5. <link rel="stylesheet" href="../inc/style.css" type="text/css"> 
  6. <script>
  7. if (self==top){self.location.href="../default.asp"};
  8. function tick() {
  9. var hours, minutes, seconds, ap;
  10. var intHours, intMinutes, intSeconds;
  11. var today;
  12. today = new Date();
  13. intHours = today.getHours();
  14. intMinutes = today.getMinutes();
  15. intSeconds = today.getSeconds();
  16. if (intHours == 0) {
  17. hours = "12:";
  18. ap = "Midnight";
  19. } else if (intHours < 12) { 
  20. hours = intHours+":";
  21. ap = "A.M.";
  22. } else if (intHours == 12) {
  23. hours = "12:";
  24. ap = "Noon";
  25. } else {
  26. hours = intHours + ":";
  27. ap = "P.M.";
  28. }
  29. if (intMinutes < 10) {
  30. minutes = "0"+intMinutes+":";
  31. } else {
  32. minutes = intMinutes+":";
  33. }
  34. if (intSeconds < 10) {
  35. seconds = "0"+intSeconds+" ";
  36. } else {
  37. seconds = intSeconds+" ";
  38. timeString = hours+minutes+seconds+ap;
  39. Clock.innerHTML = timeString;
  40. window.setTimeout("tick();", 1000);
  41. }
  42. window.onload = tick;
  43. </script>
  44.  <STYLE TYPE="text/css">
  45. <!--
  46. td { background-repeat: no-repeat; background-position: center center}
  47. --></STYLE> 
  48. </head>
  49. <body bgcolor="#FFFFFF" text="#000000" >
  50. <table id=control width="100%" style="height:expression(document.body.offsetHeight-6)" border="0" cellspacing="0" cellpadding="0" class="borderon"> 
  51. <tr> <td align="center" valign="top" BACKGROUND="../images/logo.gif"> <table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%"> 
  52. <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> 
  53. </table></td></tr> <tr> <td align="right" valign="MIDDLE" height="40"> <table border="0" cellspacing="0" cellpadding="2"> 
  54. <tr> 
  55.  <td align="right">程序设计:<FONT COLOR="#FF0000"> 江南行客&nbsp;</FONT></td>
  56.  </tr> 
  57. <tr> <td align="center" disabled><span style="font-size:11px">&nbsp;&copy;2002 
  58. NET-OA All Rights Reserved.<span id="Clock"></span></span></td></tr> 
  59. </table></td></tr> </table>
  60. </body>
  61. </html>