您目前尚未登陆,请选择【登陆】或【注册
首页->行政办公->某公司人事工资管理系统源码>>CheckManage/YearCheckForm.aspx>>代码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:某公司人事工资管理系统源码


当前文件路径:StaffSalaryManage/CheckManage/YearCheckForm.aspx 文件类型
普通视图
		            
1<%--文件名:YearCheckForm.aspx--%> 2<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="YearCheckForm.aspx.cs" Inherits="CheckManage_YearCheckForm" Title="当前位置:考勤管理->年度个人考勤" %> 3<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> 4 <table style="width: 556px; height: 161px"> 5 <tr> 6 <td align="left" style="font-size: 0.8em; width: 2232px; font-family: 宋体; height: 16px; 7 background-color: teal"> 8 &nbsp;所在部门:<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 9 DataSourceID="SqlDataSource1" DataTextField="部门名称" DataValueField="部门名称" Width="70px"> 10 </asp:DropDownList> 11 员工姓名:<asp:DropDownList ID="DropDownList2" runat="server" DataSourceID="SqlDataSource2" 12 DataTextField="姓名" DataValueField="员工编号" Width="70px"> 13 </asp:DropDownList>考勤年份:<asp:DropDownList ID="DropDownList3" runat="server"> 14 <asp:ListItem>2006</asp:ListItem> 15 <asp:ListItem>2007</asp:ListItem> 16 <asp:ListItem>2008</asp:ListItem> 17 <asp:ListItem>2009</asp:ListItem> 18 <asp:ListItem>2010</asp:ListItem> 19 <asp:ListItem>2011</asp:ListItem> 20 <asp:ListItem>2012</asp:ListItem> 21 <asp:ListItem>2013</asp:ListItem> 22 <asp:ListItem>2014</asp:ListItem> 23 <asp:ListItem>2015</asp:ListItem> 24 <asp:ListItem>2016</asp:ListItem> 25 <asp:ListItem>2017</asp:ListItem> 26 <asp:ListItem>2018</asp:ListItem> 27 <asp:ListItem>2019</asp:ListItem> 28 <asp:ListItem>2020</asp:ListItem> 29 </asp:DropDownList> 30 <asp:Button ID="Button1" runat="server" Text="查询" Width="70px" /> 31 <asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="打印" Width="70px" /> 32 <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:MyPersonnelDBConnectionString %>" 33 SelectCommand="SELECT * FROM [公司部门]"></asp:SqlDataSource> 34 <asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:MyPersonnelDBConnectionString %>" 35 SelectCommand="SELECT * FROM [在职员工视图] WHERE ([所属部门] = @所属部门)"> 36 <SelectParameters> 37 <asp:ControlParameter ControlID="DropDownList1" Name="所属部门" PropertyName="SelectedValue" 38 Type="String" /> 39 </SelectParameters> 40 </asp:SqlDataSource> 41 </td> 42 </tr> 43 <tr> 44 <td align="center" style="font-size: 0.8em; width: 2232px; font-family: 宋体; height: 27px; 45 background-color: mediumturquoise"> 46 考勤符号:出勤[/] 迟到[&gt;] 早退[&lt;] 产假[√] 事假[#] 病假[+] 婚假[△] 旷工[×]</td> 47 </tr> 48 <tr> 49 <td style="width: 2232px; height: 100px; background-color: gainsboro"> 50 <asp:Panel ID="Panel1" runat="server" Height="220px" ScrollBars="Auto" Width="553px"> 51 <asp:SqlDataSource ID="SqlDataSource3" runat="server" ConnectionString="<%$ ConnectionStrings:MyPersonnelDBConnectionString %>" 52 SelectCommand="SELECT * FROM [考勤记录] WHERE (([员工编号] = @员工编号) AND ([考勤年份] = @考勤年份)) "> 53 <SelectParameters> 54 <asp:ControlParameter ControlID="DropDownList2" Name="员工编号" PropertyName="SelectedValue" 55 Type="String" /> 56 <asp:ControlParameter ControlID="DropDownList3" Name="考勤年份" PropertyName="SelectedValue" 57 Type="Int32" /> 58 </SelectParameters> 59 </asp:SqlDataSource> 60 <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" BackColor="White" 61 BorderColor="#999999" BorderStyle="None" BorderWidth="1px" CellPadding="3" DataKeyNames="自编号" 62 DataSourceID="SqlDataSource3" Font-Names="宋体" Font-Size="Small" GridLines="Vertical" 63 Width="1100px"> 64 <FooterStyle BackColor="#CCCCCC" ForeColor="Black" /> 65 <Columns> 66 <asp:BoundField DataField="考勤年份" HeaderText="考勤年份" SortExpression="考勤年份" /> 67 <asp:BoundField DataField="考勤月份" HeaderText="考勤月份" SortExpression="考勤月份" /> 68 <asp:BoundField DataField="自编号" HeaderText="自编号" InsertVisible="False" ReadOnly="True" 69 SortExpression="自编号" Visible="False" /> 70 <asp:BoundField DataField="员工编号" HeaderText="员工编号" SortExpression="员工编号" Visible="False" /> 71 <asp:BoundField DataField="员工姓名" HeaderText="员工姓名" SortExpression="员工姓名" Visible="False" /> 72 <asp:BoundField DataField="C1" HeaderText="C1" SortExpression="C1" /> 73 <asp:BoundField DataField="C2" HeaderText="C2" SortExpression="C2" /> 74 <asp:BoundField DataField="C3" HeaderText="C3" SortExpression="C3" /> 75 <asp:BoundField DataField="C4" HeaderText="C4" SortExpression="C4" /> 76 <asp:BoundField DataField="C5" HeaderText="C5" SortExpression="C5" /> 77 <asp:BoundField DataField="C6" HeaderText="C6" SortExpression="C6" /> 78 <asp:BoundField DataField="C7" HeaderText="C7" SortExpression="C7" /> 79 <asp:BoundField DataField="C8" HeaderText="C8" SortExpression="C8" /> 80 <asp:BoundField DataField="C9" HeaderText="C9" SortExpression="C9" /> 81 <asp:BoundField DataField="C10" HeaderText="C10" SortExpression="C10" /> 82 <asp:BoundField DataField="C11" HeaderText="C11" SortExpression="C11" /> 83 <asp:BoundField DataField="C12" HeaderText="C12" SortExpression="C12" /> 84 <asp:BoundField DataField="C13" HeaderText="C13" SortExpression="C13" /> 85 <asp:BoundField DataField="C14" HeaderText="C14" SortExpression="C14" /> 86 <asp:BoundField DataField="C15" HeaderText="C15" SortExpression="C15" /> 87 <asp:BoundField DataField="C16" HeaderText="C16" SortExpression="C16" /> 88 <asp:BoundField DataField="C17" HeaderText="C17" SortExpression="C17" /> 89 <asp:BoundField DataField="C18" HeaderText="C18" SortExpression="C18" /> 90 <asp:BoundField DataField="C19" HeaderText="C19" SortExpression="C19" /> 91 <asp:BoundField DataField="C20" HeaderText="C20" SortExpression="C20" /> 92 <asp:BoundField DataField="C21" HeaderText="C21" SortExpression="C21" /> 93 <asp:BoundField DataField="C22" HeaderText="C22" SortExpression="C22" /> 94 <asp:BoundField DataField="C23" HeaderText="C23" SortExpression="C23" /> 95 <asp:BoundField DataField="C24" HeaderText="C24" SortExpression="C24" /> 96 <asp:BoundField DataField="C25" HeaderText="C25" SortExpression="C25" /> 97 <asp:BoundField DataField="C26" HeaderText="C26" SortExpression="C26" /> 98 <asp:BoundField DataField="C27" HeaderText="C27" SortExpression="C27" /> 99 <asp:BoundField DataField="C28" HeaderText="C28" SortExpression="C28" /> 100 <asp:BoundField DataField="C29" HeaderText="C29" SortExpression="C29" /> 101 <asp:BoundField DataField="C30" HeaderText="C30" SortExpression="C30" /> 102 <asp:BoundField DataField="C31" HeaderText="C31" SortExpression="C31" /> 103 </Columns> 104 <RowStyle BackColor="#EEEEEE" ForeColor="Black" /> 105 <SelectedRowStyle BackColor="#008A8C" Font-Bold="True" ForeColor="White" /> 106 <PagerStyle BackColor="#999999" ForeColor="Black" HorizontalAlign="Center" /> 107 <HeaderStyle BackColor="#000084" Font-Bold="True" ForeColor="White" HorizontalAlign="Center" /> 108 <AlternatingRowStyle BackColor="#DCDCDC" /> 109 </asp:GridView> 110 </asp:Panel> 111 </td> 112 </tr> 113 </table> 114</asp:Content> 115 116
还没有找到您心仪的内容?请用.net源码大搜捕
代码片断 打包下载该项目完整源码:某公司人事工资管理系统源码

- chx99个人主页源码

- 简单快乐留言簿源码

- 简单文章管理系统

- 学生管理信息系统+留言板

- BK通用信息采集系统web版源码

- FreeTextBox 1.6.3 中文版及源码

- Asp.net简单入门新闻系统51a..

- 达达ASP.NET企业信息管理系统

51Aspx.com 版权所有 CopyRight © 2000-2008. 京ICP备06046876号