tanchuxiaoxi.aspx
上传用户:lishan0805
上传日期:2019-12-08
资源大小:12048k
文件大小:2k
源码类别:

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="tanchuxiaoxi.aspx.cs" Inherits="tanchuxiaoxi" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>弹出消息页</title>
  6.     <style type="text/css">
  7. <!--
  8. .style1 {color: #818181}
  9. -->
  10. </style>
  11. <link href="/css/textarea.css" rel="stylesheet" type="text/css" />
  12. <style type="text/css">
  13. <!--
  14. body {
  15. margin-top: 0px;
  16. margin-left: 0px;
  17. }
  18. -->
  19. </style>
  20. </head>
  21. <body onload="setTimeout('window.close()',15000)" bgcolor="d5eebb">
  22.     <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="d5eebb">
  23.      <%
  24.      System.Collections.Generic.IList<COM.OA.Entity.message> newlist= Session["newlist"] as System.Collections.Generic.IList<COM.OA.Entity.message>;
  25.      COM.OA.Entity.message mm = newlist[0];    
  26.     
  27.   %>
  28.   <tr>
  29.     <td ><span class="style1">&nbsp;<img src="images/wximg/announce.gif"15" height="16" /> 您有新的消息:<%=mm.m_title %></span></td>
  30.   </tr>
  31.   <tr>
  32.     <td height="40" valign="top" style="word-break:break-all;Width:fixed"><div align="right" >
  33.        
  34.   发送人:<%= mm.users.u_username%>
  35. <br>
  36. <%=mm.m_releasetime %>
  37. <br>
  38.   <img src="images/wximg/feedback.gif"width="16" height="16" /> <a href="#" onclick="window.open('wx_xiaoxi/jieshouxinxi.aspx?','','')";window.close()>查 看 详 情</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <font color="green"><span id="jump">15</span></font>秒后关闭...</div></td>
  39.   </tr>
  40. </table>
  41. <script>
  42. function showtime(secs)
  43. {
  44. jump.innerText=secs;
  45. if(--secs>0)setTimeout("showtime("+secs+")",1000);
  46. }
  47. showtime(15);
  48. </script>
  49. </body>
  50. </html>