WorkSum.aspx
资源名称:yjal.rar [点击查看]
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:10k
源码类别:
Email客户端
开发平台:
Visual C++
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="WorkSum.aspx.cs" Inherits="Module_Employee_ProRes_WorkSum" %>
- <!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="vertical-align: middle; text-align: center; background-image: url(../../Images/SysSkin/worksum.jpg); background-repeat: no-repeat;">
- <form id="form1" runat="server">
- <div style="vertical-align: middle; text-align: center">
- <br />
- </div>
- <table cellpadding="0" cellspacing="0" style="vertical-align: middle; width: 605px;
- text-align: center">
- <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="4">
- <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">添加总结</asp:LinkButton></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td colspan="4" rowspan="2" style="height: 20px">
- <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False"
- Font-Size="9pt" OnPageIndexChanging="GridView1_PageIndexChanging" Width="100%">
- <Columns>
- <asp:BoundField DataField="ID" HeaderText="ID" />
- <asp:BoundField DataField="Name" HeaderText="总结人员" />
- <asp:BoundField DataField="DepName" HeaderText="部门名称" />
- <asp:BoundField DataField="DoWhat" HeaderText="做了什么" />
- <asp:BoundField DataField="FinishHow" HeaderText="完成情况" />
- <asp:HyperLinkField DataNavigateUrlFields="ID" DataNavigateUrlFormatString="WorkSumInfo.aspx?ID={0}"
- HeaderText="查看详情" Text="查看" />
- </Columns>
- </asp:GridView>
- </td>
- </tr>
- <tr>
- </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: 19px">
- </td>
- </tr>
- <tr>
- <td colspan="4" style="height: 19px">
- <span style="font-size: 16pt"></span></td>
- </tr>
- <tr>
- <td style="width: 100px; height: 19px">
- <span style="font-size: 9pt">总结人员</span></td>
- <td style="width: 200px; height: 19px; text-align: left">
- <asp:DropDownList ID="dropSumMan" runat="server" Font-Bold="False" Font-Size="9pt"
- Width="156px">
- </asp:DropDownList></td>
- <td style="width: 100px; height: 19px">
- <span style="font-size: 9pt">部门名称</span></td>
- <td style="height: 19px; text-align: left">
- <asp:DropDownList ID="dropDepName" runat="server" Font-Size="9pt" Width="156px">
- </asp:DropDownList></td>
- </tr>
- <tr>
- <td style="width: 100px; height: 19px">
- <span style="font-size: 9pt">开始时间</span></td>
- <td style="width: 200px; height: 19px; text-align: left">
- <asp:TextBox ID="txtStartTime" runat="server" Font-Size="9pt" Width="150px"></asp:TextBox>
- <asp:CompareValidator ID="CompareValidator1" runat="server" ControlToValidate="txtStartTime"
- ErrorMessage="格式:yyyy-mm-dd" Operator="DataTypeCheck" Type="Date" Width="3px">*</asp:CompareValidator></td>
- <td style="width: 100px; height: 19px">
- <span style="font-size: 9pt">结束时间</span></td>
- <td style="height: 19px; text-align: left">
- <asp:TextBox ID="txtEndTime" runat="server" Font-Size="9pt" Width="150px"></asp:TextBox>
- <asp:CompareValidator ID="CompareValidator2" runat="server" ControlToValidate="txtEndTime"
- ErrorMessage="格式:yyyy-mm-dd" Operator="DataTypeCheck" Type="Date" Width="3px">*</asp:CompareValidator></td>
- </tr>
- <tr>
- <td style="width: 100px; height: 19px">
- <span style="font-size: 9pt">做了什么</span></td>
- <td style="width: 200px; height: 19px; text-align: left">
- <asp:TextBox ID="txtDoWhat" runat="server" Font-Size="9pt" Width="150px" MaxLength="100"></asp:TextBox></td>
- <td style="width: 100px; height: 19px">
- <span style="font-size: 9pt">完成程度</span></td>
- <td style="height: 19px; text-align: left">
- <asp:TextBox ID="txtFinishWhat" runat="server" Font-Size="9pt" Width="150px" MaxLength="100"></asp:TextBox><span
- style="font-size: 9pt; color: #ff3300">(如100%)</span></td>
- </tr>
- <tr>
- <td style="height: 20px">
- <span style="font-size: 9pt">工作描述</span></td>
- <td colspan="3" rowspan="2" style="text-align: left">
- <asp:TextBox ID="txtContent" runat="server" Font-Size="9pt" Height="120px" TextMode="MultiLine"
- Width="450px" MaxLength="500"></asp:TextBox></td>
- </tr>
- <tr>
- <td style="height: 85px">
- </td>
- </tr>
- <tr>
- <td colspan="4">
- <asp:Button ID="btnOK" runat="server" Font-Size="9pt" OnClick="btnOK_Click" Text="提交" />
- <input id="Reset1" style="font-size: 9pt" type="reset" value="重置" />
- <asp:Button ID="btnBack" runat="server" Font-Size="9pt" OnClick="btnBack_Click" Text="返回" /><br />
- <asp:ValidationSummary ID="ValidationSummary1" runat="server" Font-Size="9pt" ShowMessageBox="True"
- ShowSummary="False" />
- </td>
- </tr>
- </table>
- </asp:Panel>
- </td>
- </tr>
- <tr>
- </tr>
- <tr>
- </tr>
- </table>
- </form>
- </body>
- </html>