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

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="fileslog.aspx.cs" Inherits="files_fileslog" %>
  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.     <link href="../css/link.css" rel="stylesheet" type="text/css" />
  7. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>
  8. <style type="text/css"> 
  9. <!--
  10. body {
  11. margin-top: 2px;
  12. }
  13. -->
  14. div.RoundedCorner{background: #5AAE18}
  15. b.rtop, b.rbottom{display:block;background: #FFF}
  16. b.rtop b, b.rbottom b{display:block;height: 1px;overflow: hidden; background: #5AAE18}
  17. b.r1{margin: 0 4px}
  18. b.r2{margin: 0 3px}
  19. b.r3{margin: 0 2px}
  20. b.rtop b.r4, {margin: 0 1px;height: 1px}
  21. .style1 {
  22. font-size: 13px;
  23. color: #FFFFFF;
  24.     font-weight: bold;
  25. }
  26. </style>
  27. </head>
  28. <script type="text/javascript">
  29. function CheckAll(form){
  30.     for (var i=0;i<form.elements.length;i++){
  31.         var e = form.elements[i];
  32.         if (e.name != 'chkAll')
  33.         e.checked = form.chkAll.checked;
  34.     }
  35. }
  36. </script>
  37. <script type="text/javascript" language="JavaScript">
  38.   function check()//表单判断
  39.   {
  40.    var str="";
  41.    var j=0;
  42.    var el=document.form1.getElementsByTagName("input")
  43.    for(i=0;i<el.length;i++){
  44.     if(el[i].type=="checkbox"){
  45.      if((el[i].checked)&&(el[i].name.indexOf("id")!='-1')){
  46.       j++;
  47.      }
  48.     }
  49.    }
  50.    if(j > 100 || j<1)
  51.    {
  52.     alert("最少必须选择一项,最多不能超过100项!rt你现在选择了"+j+"项");
  53.     return false;
  54.    }
  55.    
  56.      if(!confirm('您确定要删除吗?'))
  57.  {
  58. return false
  59. else 
  60. document.form1.submit
  61. }
  62.   </script> 
  63.   
  64. <script type="text/javascript">
  65. <!--
  66. function check1() {
  67. if (document.form2.q.value=="") {
  68. window.alert ("请输入查询关键词!")
  69. document.form2.q.focus()
  70. return false
  71. }
  72. return true
  73. }
  74. //-->
  75. </script>
  76. <body style="text-align: center">
  77.     <form name="form2" method="post" action="">
  78.   <table width="103%" border="0">
  79.     <tr>
  80.       <td width="615"><div align="right">
  81.           &nbsp;
  82.       </div></td>
  83.       
  84.       
  85.       
  86.       
  87.     </tr>
  88.   </table>
  89. </form>
  90. <form name="form1" method="post" action="" onsubmit="return check()">
  91.   <div align="center">
  92.    <div align="center">
  93.               <div class="RoundedCorner"> <b class="rtop"><b class="r1"></b><b class="r2"></b><b class="r3"></b><b class="r4"></b></b> <span class="style1">文 件 发 送 记 录</span></div>
  94.     </div>
  95.     
  96.    <table width="100%" border="0" cellpadding="2" cellspacing="1" bgcolor="#5AAE18">
  97.      <tr bgcolor="#FFFFFF">
  98.        <td colspan="2"><div align="center" class="style2 style10">
  99.            <div align="center">
  100.                <strong>文件名</strong></div>
  101.        </div></td>
  102.        
  103.        <td width="5%"><div align="center"><strong>回 复</strong></div></td>
  104.        <td width="5%"><div align="center"><strong>读 否</strong></div></td>
  105.        <td width="5%"><div align="center"><strong>阅 读</strong></div></td>
  106.        <td width="5%"><div align="center"><strong>下 载</strong></div></td>
  107.        <td width="5%"><div align="center"><strong>备 注</strong></div></td>
  108.        <td width="5%"><div align="center"><strong>备 注</strong></div></td>
  109.       
  110.        <td width="8%"><div align="center" class="style2">
  111.            <div align="center"><strong>接收人</strong></div>
  112.        </div></td>
  113.         
  114.      </tr>  
  115.    <%//取登陆传来的人的名字
  116.        COM.OA.Entity.users loginuser =Session["loginuser"] as COM.OA.Entity.users;
  117.        if (loginuser == null)
  118.        {
  119.            Response.Write("<script language='javascript'>parent.document.location.href='../login.aspx'</script>");
  120.            return;
  121.        }
  122.        
  123.            int userId = loginuser.u_id;
  124.      
  125.        //string name = "haha";
  126.        //string where1 = "u_username='{0}'";
  127.        //where1 = string.Format(where1, name);
  128.        //System.Collections.Generic.IList<COM.OA.Entity.users> listuname = COM.OA.BLL.usersBLL.Select(where1);
  129.        //COM.OA.Entity.users user = listuname[0];
  130.        //int userId = user.u_id;
  131.        //用登陆ID当条件查和接收人ID相同的
  132.        string where2 = "f_takeu_id='{0}'";
  133.        where2 = string.Format(where2, userId);
  134.        System.Collections.Generic.IList<COM.OA.Entity.files> listwenjin = COM.OA.BLL.filesBLL.Select(where2);
  135.        if (listwenjin.Count==0)
  136.        {
  137.        %>
  138.        
  139.      <tr bgcolor="#FFFFFF">
  140.          <td colspan="11">
  141.              <div align="center">无数据<span class="style2">
  142.        </span>&nbsp;</div>
  143.          </td>
  144.      </tr>   
  145.        
  146.        <%
  147.        }
  148.        else{
  149.       COM.OA.Entity.files fss=listwenjin[0];
  150.       int useridd = fss.f_takeu_id;
  151.       
  152.       COM.OA.Entity.users us = COM.OA.BLL.usersBLL.Select(useridd);
  153.      
  154. //循环文件类,附直
  155.        foreach (COM.OA.Entity.files fs in listwenjin) {%>
  156.        <tr bgcolor="#FFFFFF" onmouseover = "this.style.backgroundColor = '#EEEEEE'" onmouseout = "this.style.backgroundColor = ''">
  157.         <td style="width: 3%"></td>
  158.         <td width="49%"><a href="readwenjian.aspx?fid=<%=fs.f_id %>">  <%=fs.f_filename %></a></td>
  159.        
  160.         <td>
  161.         <%if (fs.f_isreturn == 0) {%> 无<% 
  162.           }else{%>
  163.           <a href="chakanhuifu.aspx?f_takeu_id=<%=fs.f_takeu_id %>">查看</a>
  164.         <% }%>
  165.         </td>
  166.         <td><%if (fs.f_isread == 0)
  167.               {%>未读<%
  168.                 }
  169.                 else
  170.                 {%>已读
  171.               <%} %>
  172.         </td>
  173.         <td><div align="center"><font color="#FF0000"><%=fs.f_readdegree%></font></div></td>
  174.         <td><div align="center"><a href="download.aspx?id=<%=fs.f_id%>">下载</a></div></td>
  175.         <td><div align="center"><a href="tianjiabeizhu.aspx?f_id=<%=fs.f_id %>">备 注</a> </div></td>
  176.         <td><%=fs.f_remark %></td>
  177.         
  178.         <td><%=us.u_username%></td>
  179.         
  180.      </tr>
  181.         <%}%>
  182.         
  183.      
  184.      
  185.      <tr bgcolor="#FFFFFF" onmouseover = "this.style.backgroundColor = '#EEEEEE'" onmouseout = "this.style.backgroundColor = ''">
  186.          <td colspan="11">
  187.              <div align="center"><span class="style2">
  188.        </span>&nbsp;</div>
  189.          </td>
  190.      </tr>
  191.      <tr bgcolor="#FFFFFF" onmouseover = "this.style.backgroundColor = '#EEEEEE'" onmouseout = "this.style.backgroundColor = ''">
  192.        <td colspan="11"><span class="style2">&nbsp;</span></td>
  193.      </tr>
  194.    </table>
  195.   </div>
  196. </form>
  197. <table width="80%" border="0" cellspacing="0" cellpadding="0">
  198.   <tr>
  199.     <td><div align="center"> 总共 <%=listwenjin.Count %>条记录)</div></td>
  200.   </tr>
  201. </table>
  202. <div align="right"></div>
  203.               <a href="javascript:history.go(-1)"><img border="0"  alt="" src="../images/qs/back.gif" width="37" height="45"  /></a>
  204. <% } %>
  205. </body>
  206. </html>