tzdept.aspx
资源名称:OASystem.rar [点击查看]
上传用户:lishan0805
上传日期:2019-12-08
资源大小:12048k
文件大小:6k
源码类别:
OA系统
开发平台:
C#
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="tzdept.aspx.cs" Inherits="tzManager_tzdept" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head id="Head1" runat="server">
- <title>接收通知</title>
- <style type="text/css">
- <!--
- body {
- margin-top: 2px;
- }
- -->
- div.RoundedCorner{background: #5AAE18}
- b.rtop, b.rbottom{display:block;background: #FFF}
- b.rtop b, b.rbottom b{display:block;height: 1px;overflow: hidden; background: #5AAE18}
- b.r1{margin: 0 4px}
- b.r2{margin: 0 3px}
- b.r3{margin: 0 2px}
- b.rtop b.r4, {margin: 0 1px;height: 1px}
- .style1 {
- font-size: 13px;
- color: #FFFFFF;
- font-weight: bold;
- }
- </style>
- <script language="javascript" type="text/javascript">
- </script>
- <link href="../css/link.css" rel="stylesheet" type="text/css" />
- </head>
- <body><form action="" runat="server" method="post" name="form1" onsubmit="return dis()" id="Form1">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <table width="96%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="33%" valign="middle"> </td>
- <td width="47%" valign="middle"><div align="right">
- <asp:TextBox ID="txtwhere" runat="server"></asp:TextBox>
- <asp:Button ID="btnselect" runat="server" OnClick="btnselect_Click" Text="查 询" />
- </div></td>
- <td width="3%"><div align="center">
- <img alt="" src="../images/huiyan/fabutongzhi.gif" /></div></td>
- <td width="7%"><span class="style4"><a href="../tzManager/addtz.aspx" class="style4">发布通知</a></span></td>
- <td width="2%"><span class="style4">
- <img alt="" src="../images/huiyan/tongzhiguanli.gif" /></span></td>
- <td width="7%"><div align="center" class="style4"><a href="../tzManager/guanlitongzhi.aspx">通知管理</a> </div></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <div class="RoundedCorner" style="text-align: center">
- <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>
- <table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#5AAE18">
- <tr>
- <td height="24" colspan="8" bgcolor="#FFFFFF">
- <%//查询数据库并foreach循环输出到页面
- System.Collections.Generic.IList<COM.OA.Entity.department> listd = COM.OA.BLL.departmentBLL.Select();%>
- <%foreach(COM.OA.Entity.department d in listd) %><% { %>
- <a href="tzdept.aspx?dept_id=<%=d.dept_id %>"><%= d.dept_department %></a>
- <% } %>
- <font color="#999999"> —→ <a href="sendwordindex.aspx">通知列表</a></font>
- <%//从request中取出“部门ID”并查询数据库
- int dept_id = Int32.Parse( this.Request["dept_id"]);
- System.Collections.Generic.IList<COM.OA.Entity.sendword> list = COM.OA.BLL.sendwordBLL.Select("sw_state=0 and sw_dept_id = " + dept_id, true, false);
- %>
- <% //放入“部门”实体中 并循环输出
- COM.OA.Entity.department dept = COM.OA.BLL.departmentBLL.Select(dept_id); %>
- (共<font color="#5aaE18"><strong> <%=list.Count.ToString() %> </strong></font>条通知) <font color="#999999"><%=dept.dept_department %></font>
- </td></tr>
- <tr bgcolor="#FFFFFF">
- <td width="38%" height="21"><div align="left" style="text-align: center"><strong> 标 题 </strong></div></td>
- <td width="6%"><div align="center"><strong><span class="style13">发布人</span></strong></div></td>
- <td width="7%"><div align="center"><strong>部 门</strong></div></td>
- <td width="15%"><div align="center"><strong>时 间</strong></div></td>
- <td width="8%"><div align="center"><strong>浏览</strong></div></td>
- </tr>
- <% foreach(COM.OA.Entity.sendword sw in list) %><% { %>
- <tr style="height:21px" bgcolor="#FFFFFF" onmouseover = "this.style.backgroundColor = '#EEEEEE'" onmouseout = "this.style.backgroundColor = ''">
- <td style="text-align: left"> <img alt="" src="../images/huiyan/biaoti.gif" />
- <a href="tongzhineirong.aspx?sw_id=<%=sw.sw_id %>">
- <%=sw.sw_title %>
- </a> <span class="style3"><%=sw.sw_releasetime %></span></td>
- <td><div align="center">
- <% System.Collections.Generic.IList<COM.OA.Entity.employee> el = COM.OA.BLL.employeeBLL.Select("em_id="+sw.users.u_em_id);
- COM.OA.Entity.employee e = el[0];
- %><%=e.em_name %><%
- %></div></td>
- <td><div align="center"><%=sw.department.dept_department %></div></td>
- <td><div align="center">
- <div align="center">
- <div align="center">
- <%=sw.sw_releasetime %>
- </div>
- </div>
- </div></td>
- <td><div align="center"><%=sw.sw_reads %></div></td>
- </tr>
- <% } %>
- </table>
- <br/><br/>
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td></td>
- <td align="center">
- <% if (list.Count != 0)
- { %>
- 记录 1 到 <%=list.Count.ToString()%> (总共<%=list.Count.ToString()%> 个通知)
- <% }else { %>
- 暂无通知
- <%}%>
- </td>
- <td></td>
- </tr>
- <tr>
- <td></td>
- <td align="center">
- <img src="../images/huiyan/up.gif" /><a href="javascript:history.go(-1)">返 回</a>
- </td>
- <td></td>
- </tr>
- </table>
- </form>
- </body>
- </html>