WageManage.aspx
资源名称:yjal.rar [点击查看]
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:9k
源码类别:
Email客户端
开发平台:
Visual C++
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="WageManage.aspx.cs" Inherits="Module_ProRes_WageManage" %>
- <!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 runat="server">
- <title>员工工资管理</title>
- </head>
- <body style="font-size: 12pt; vertical-align: middle; text-align: center; background-image: url(../../Images/SysSkin/wagemanage.jpg); background-repeat: no-repeat;">
- <form id="form1" runat="server">
- <br />
- <br />
- <table cellpadding="0" cellspacing="0" style="width: 605px; vertical-align: middle; text-align: center; font-size: 9pt;">
- <tr>
- <td colspan="3" rowspan="3">
- <asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px">
- <table cellpadding="0" cellspacing="0" style="vertical-align: middle; width: 605px;
- text-align: center">
- <tr>
- <td colspan="3">
- <table cellpadding="0" cellspacing="0" style="width: 600px">
- <tr>
- <td style="width: 100px; height: 23px">
- <span style="font-size: 9pt">查找类别</span></td>
- <td style="width: 120px; height: 23px; text-align: left">
- <asp:DropDownList ID="dropClass" runat="server" Font-Size="9pt" Width="120px">
- <asp:ListItem>ID</asp:ListItem>
- <asp:ListItem>员工姓名</asp:ListItem>
- <asp:ListItem>录入人员</asp:ListItem>
- </asp:DropDownList></td>
- <td style="width: 100px; height: 23px">
- <span style="font-size: 9pt">关键字</span></td>
- <td style="width: 120px; height: 23px; text-align: left">
- <asp:TextBox ID="txtKeyWord" runat="server" Font-Size="9pt" Width="120px"></asp:TextBox></td>
- <td style="width: 12px; height: 23px">
- <asp:Button ID="btnFind" runat="server" Font-Size="9pt" OnClick="btnFind_Click" Text="查找" /></td>
- <td style="height: 23px">
- <asp:LinkButton ID="lnkbtnAdd" runat="server" Font-Size="9pt" Font-Underline="False"
- ForeColor="#FF3333" OnClick="lnkbtnAdd_Click1" Visible="False">工资录入</asp:LinkButton></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td colspan="3">
- <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False"
- OnPageIndexChanging="GridView1_PageIndexChanging" OnRowDataBound="GridView1_RowDataBound"
- OnRowDeleting="GridView1_RowDeleting" Width="605px">
- <Columns>
- <asp:BoundField DataField="ID" HeaderText="ID" />
- <asp:BoundField DataField="Name" HeaderText="员工姓名" />
- <asp:BoundField DataField="BaseWage" HeaderText="基本工资" />
- <asp:BoundField DataField="Bonus" HeaderText="奖金" />
- <asp:BoundField DataField="PayMent" HeaderText="实发金额" />
- <asp:BoundField DataField="WriteInMan" HeaderText="录入人员" />
- <asp:CommandField HeaderText="删除记录" ShowDeleteButton="True" />
- </Columns>
- </asp:GridView>
- </td>
- </tr>
- </table>
- </asp:Panel>
- <asp:Panel ID="Panel2" runat="server" Height="50px" Visible="False" Width="125px">
- <table cellpadding="0" cellspacing="0" style="width: 605px">
- <tr>
- <td colspan="4" style="height: 25px">
- </td>
- </tr>
- <tr>
- <td colspan="4" style="height: 23px">
- <span style="font-size: 16pt"></span></td>
- </tr>
- <tr>
- <td style="width: 100px; height: 15px">
- 员工姓名</td>
- <td style="width: 200px; height: 15px; text-align: left">
- <asp:TextBox ID="txtName" runat="server" MaxLength="20"></asp:TextBox>
- <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="姓名不能为空" ControlToValidate="txtName">*</asp:RequiredFieldValidator></td>
- <td style="width: 100px; height: 15px">
- 基本工资</td>
- <td style="width: 200px; height: 15px; text-align: left">
- <asp:TextBox ID="txtBaseWage" runat="server" MaxLength="20"></asp:TextBox>元/月<asp:RequiredFieldValidator
- ID="RequiredFieldValidator2" runat="server" ErrorMessage="基本工资不能为空" ControlToValidate="txtBaseWage">*</asp:RequiredFieldValidator></td>
- </tr>
- <tr>
- <td style="height: 17px">
- 奖金</td>
- <td style="height: 17px; text-align: left">
- <asp:TextBox ID="txtBounds" runat="server" MaxLength="20"></asp:TextBox>元</td>
- <td style="height: 17px">
- 实发工资</td>
- <td style="height: 17px; text-align: left">
- <asp:TextBox ID="txtPayMent" runat="server" MaxLength="20"></asp:TextBox>元<asp:RequiredFieldValidator
- ID="RequiredFieldValidator3" runat="server" ErrorMessage="实发工资不能为空" ControlToValidate="txtPayMent">*</asp:RequiredFieldValidator></td>
- </tr>
- <tr>
- <td style="height: 17px">
- 录入人员</td>
- <td style="height: 17px; text-align: left">
- <asp:TextBox ID="txtWriteIn" runat="server" MaxLength="20"></asp:TextBox>
- <asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server" ErrorMessage="录入人员不能为空" ControlToValidate="txtWriteIn">*</asp:RequiredFieldValidator></td>
- <td style="height: 17px">
- </td>
- <td style="height: 17px; text-align: left">
- </td>
- </tr>
- <tr>
- <td colspan="4" style="height: 17px">
- <asp:Button ID="Button1" runat="server" Font-Size="9pt" Text="提交" OnClick="Button1_Click" />
- <input id="Reset1" style="font-size: 9pt" type="reset" value="重置" />
- <asp:Button ID="btnBack" runat="server" Font-Size="9pt" Text="返回" OnClick="btnBack_Click" CausesValidation="False" /><br />
- <asp:ValidationSummary ID="ValidationSummary1" runat="server" ShowMessageBox="True"
- ShowSummary="False" />
- </td>
- </tr>
- </table>
- </asp:Panel>
- </td>
- </tr>
- <tr>
- </tr>
- <tr>
- </tr>
- </table>
- </form>
- </body>
- </html>