say.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">  <link rel="stylesheet" href="../../inc/style.css" type="text/css">
  5. <script>
  6. function formsubmit(){
  7. if (document.form1.mName.value==""){
  8. alert("你想对谁说话?");
  9. }else{
  10. document.form1.action = "chat.asp";
  11. form1.submit();
  12. document.form1.mMessage.value="";
  13. document.form1.mMessage.focus();
  14. }
  15. }
  16. function chkMsg(){ 
  17.  saymessage.location.href="chat.asp";
  18. }
  19. setInterval("chkMsg()",20000);
  20. </script>
  21. </head>
  22. <body bgcolor="#FFFFFF" text="#000000" oncontextmenu="return false" leftmargin="0" topmargin="0">
  23. <table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%" align="center">
  24.  <tr>
  25.  <td valign="middle" class="borderon" height="30">MSG即时信息发送系统是NET-OA网络办公系统中的一个重要组成部分。你可以用它和任何办公成员发送或留言即时消息。</td>
  26.  </tr>
  27.  <tr> 
  28.  <td valign="top" align="center" class="borderon"><iframe src="out.asp" name="main" width="100%" height="100%"></iframe> 
  29.  </td>
  30.  </tr>
  31.  <tr> 
  32.  <form name="form1" method="post" target="saymessage" onkeydown="if(event.keyCode==13 )form1.s.click();">
  33.  <td height="10" class="borderon"> 你对 
  34.  <input type="hidden" name="mTo">
  35. <input type="text" name="mName" size="6" readonly>
  36.  <input type="text" name="mMessage" size="28" >
  37.  <input type="button" name="s" value="发言" onclick="formsubmit();" class="button2">
  38.  </td>
  39.  </form>
  40.  </tr>
  41.  <tr> 
  42.  <td height="10" align="right" disabled class="borderon">程序设计:江南行客 QQ:2503086&nbsp;&nbsp;</td>
  43.  </tr>
  44. </table>
  45. <iframe name="saymessage" src="chat.asp" width="0" height="0"></iframe> 
  46. </body>
  47. </html>