DutysManager.aspx
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:5k
源码类别:

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="DutysManager.aspx.cs" Inherits="Dutys_DutysManager" %>
  2. <%@ Register Assembly="AspNetPager" Namespace="Wuqi.Webdiyer" TagPrefix="webdiyer" %>
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  4. <html>
  5. <head>
  6.     <link href="../css/main.css" type="text/css" rel="stylesheet">
  7. </head>
  8.   <SCRIPT language="JavaScript" src="../js/calendar.js"></SCRIPT>
  9. <body bottommargin="0" leftmargin="0" topmargin="0" rightmargin="0">
  10. <form runat="server" id="fm1">
  11.     <br>
  12.     <table class="usertableborder" cellspacing="1" cellpadding="3" width="100%" align="center" border="0">
  13.         <tr>
  14.             <th colspan="3" style="height: 25px">
  15.                 值班管理</th>
  16.         </tr>
  17.         <tr>
  18.             <td class="usertablerow2" align="left" style="height: 32px;" colspan="2">
  19.                 <asp:GridView ID="GridView1" CssClass="usertableborder" runat="server" AutoGenerateColumns="False" PageSize="20" OnRowDataBound="GridView1_RowDataBound" Width="100%">
  20.                     <Columns>
  21.                         <asp:TemplateField>
  22.                             <ItemTemplate>
  23.                                 <asp:CheckBox ID="CheckBoxItem" runat="server" />
  24.                             </ItemTemplate>
  25.                             </asp:TemplateField>
  26.                             <asp:BoundField DataField="ID" HeaderText="ID" >
  27.                                 <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" />
  28.                             </asp:BoundField>
  29.                             <asp:BoundField DataField="ZBRY" HeaderText="值班人员" >
  30.                                 <ItemStyle HorizontalAlign="Center" />
  31.                             </asp:BoundField>
  32.                             <asp:TemplateField HeaderText="值班类别">
  33.                             <ItemTemplate>
  34.                                 <%#YPLB()%>
  35.                             </ItemTemplate>                         
  36.                             <ItemStyle HorizontalAlign="Center" />
  37.                         </asp:TemplateField>
  38.            
  39.                         <asp:BoundField DataField="ZBKSSJ" HeaderText="开始时间" >
  40.                             <ItemStyle HorizontalAlign="Center" />
  41.                         </asp:BoundField>
  42.                         <asp:BoundField DataField="ZBJSSJ" HeaderText="结束时间" >
  43.                             <ItemStyle HorizontalAlign="Center" />
  44.                         </asp:BoundField>
  45.                         <asp:BoundField DataField="BZ" HeaderText="备注">
  46.                             <ItemStyle HorizontalAlign="Center" />
  47.                         </asp:BoundField>
  48.                         
  49.                         <asp:TemplateField HeaderText="操作">
  50.                             <HeaderStyle  Width="300px" />
  51.                                 <ItemTemplate>
  52.                                     <%#CaoZuo()%>
  53.                                 </ItemTemplate>                         
  54.                             <ItemStyle HorizontalAlign="Center" />
  55.                          </asp:TemplateField>
  56.                     </Columns>
  57.                     <RowStyle CssClass="usertablerow2" />
  58.                     <AlternatingRowStyle CssClass="usertablerow1" />
  59.                 </asp:GridView>
  60.             </td>
  61.         </tr>
  62.         <tr>
  63.             <td align="left" class="usertablerow1" colspan="2">&nbsp;
  64.                 <webdiyer:AspNetPager ID="AspNetPager1" runat="server" PageSize="20" OnPageChanging="AspNetPager1_PageChanging"></webdiyer:AspNetPager>        
  65.                 <asp:CheckBox ID="CheckBox1" runat="server" Text="全选" OnCheckedChanged="CheckBox1_CheckedChanged" AutoPostBack="True" />&nbsp;
  66.                 <asp:Button ID="DelButton1" runat="server" Text="删除并销毁文件" OnClientClick="javascript:return confirm('确定要删除该记录吗?')" OnClick="DelButton1_Click" />  &nbsp;  &nbsp;
  67.                 <input type="Button"  Class="ptsbutton" value="添加值班" OnClick="window.location='DutyAdd.aspx'" /> &nbsp;  &nbsp;  
  68.                 <input type="Button"  Class="ptsbutton" value="查询" OnClick="window.location='SearchDuty.aspx'" />&nbsp; &nbsp;
  69.                 <input type="Button"  Class="ptsbutton" value="打印" OnClick="window.print()" />
  70.             </td>
  71.     
  72.         </tr>     
  73.      
  74.     </table>
  75.     <br>
  76.     <table class="usertableborder" cellspacing="1" cellpadding="3" width="96%" align="center"
  77.         border="0">
  78.         <tr>
  79.             <th colspan="2">
  80.                 使用方法</th>
  81.         </tr>
  82.         <tr>
  83.             <td class="usertablerow1" align="right" width="11%">
  84.                 <strong>特殊说明</strong></td>
  85.             <td class="usertablerow1" width="89%">
  86.                 <a href="http://www.woying.net/" target="_blank">挨个填写即可</a></td>
  87.         </tr>
  88.     </table>
  89.     </form>
  90.     
  91. </body>
  92. </html>