123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="attendancDataList.aspx.cs"
- Inherits="OA2014.users.attendancDataList" %>
- <!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>
- <link href="../css/all.css" rel="stylesheet" type="text/css" />
- </head>
- <body style="width:65%;margin:auto">
- <form id="form1" runat="server">
- <div>
- <div class="ps">
- <table class="ps" cellpadding="0" cellspacing="0">
- <tr>
- <td class="ps_font">
- <asp:DropDownList ID="ddlYearMonth" AutoPostBack="true" runat="server"
- Width="100" ontextchanged="ddlYearMonth_TextChanged" />
- <asp:DropDownList ID="ddlUsers" AutoPostBack="true" runat="server" Width="70"
- ontextchanged="ddlUsers_TextChanged" />
- </td>
- </tr>
- </table>
- </div>
- <div class="list">
- <table class="list" cellpadding="0" cellspacing="0" border="0">
- <tr class="tr_title">
- <td class="td">
- 日 期
- </td>
- <td class="td">
- 星 期
- </td>
- <td class="td">
- 早 上
- </td>
- <td class="td">
- 中 午
- </td>
- <td class="td">
- 下 午
- </td>
- <td class="td">
- 晚 上
- </td>
- </tr>
- <asp:Repeater ID="rpData" runat="server" OnItemDataBound="rpData_ItemDataBound">
- <ItemTemplate>
- <tr class="tr_content" style='<%#Eval("CTid").ToString()!="0"?"background-color:#cbcbcb;":"" %>'>
- <td class="td">
- <asp:Label ID="lblCTid" runat="server" Text='<%#Eval("CTid") %>' Visible="false" />
- <asp:Label ID="lblCalendarDate" runat="server" Text='<%#Eval("CalendarDate") %>' />
- </td>
- <td class="td">
- <asp:Label ID="lblWeek" runat="server" />
- </td>
- <td class="td">
- <asp:Label ID="lblMorning" runat="server" />
- </td>
- <td class="td">
- <asp:Label ID="lblNoon" runat="server" />
- </td>
- <td class="td">
- <asp:Label ID="lblAfternoon" runat="server" />
- </td>
- <td class="td">
- <asp:Label ID="lblAtNight" runat="server" />
- </td>
- </tr>
- </ItemTemplate>
- </asp:Repeater>
- </table>
- </div>
- </div>
- </form>
- </body>
- </html>
|