DeptAllInfo.aspx
资源名称:yjal.rar [点击查看]
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:6k
源码类别:
Email客户端
开发平台:
Visual C++
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="DeptAllInfo.aspx.cs" Inherits="Module_ProRes_DeptAllInfo" %>
- <!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/deptallinfo.jpg); background-repeat: no-repeat;">
- <form id="form1" runat="server">
- <div>
- <br />
- <br />
- <br />
- <br />
- <br />
- <br />
- <table cellpadding="0" cellspacing="0" style="width: 600px; height: 160px;">
- <tr>
- <td colspan="4">
- <span style="font-size: 16pt"></span></td>
- </tr>
- <tr>
- <td colspan="4" style="height: 5px">
- </td>
- </tr>
- <tr>
- <td style="width: 100px; height: 17px">
- <span style="font-size: 9pt">部门名称</span></td>
- <td style="width: 200px; height: 17px; text-align: left">
- <asp:TextBox ID="txtDeptName" runat="server" ReadOnly="True"></asp:TextBox>
- <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtDeptName"
- ErrorMessage="部门名称不能为空">*</asp:RequiredFieldValidator></td>
- <td style="width: 100px; height: 17px">
- <span style="font-size: 9pt">部门经理</span></td>
- <td style="width: 203px; height: 17px; text-align: left">
- <asp:Panel ID="Panel2" runat="server" Height="12px" Width="125px">
- <asp:TextBox ID="txtDeptManager" runat="server"></asp:TextBox></asp:Panel>
- <asp:Panel ID="Panel3" runat="server" Visible="False" Width="125px">
- <asp:DropDownList ID="DropDownList1" runat="server" Width="154px">
- </asp:DropDownList></asp:Panel>
- </td>
- </tr>
- <tr>
- <td style="height: 15px">
- <span style="font-size: 9pt">部门电话</span></td>
- <td style="height: 15px; text-align: left">
- <asp:TextBox ID="txtDeptPhone" runat="server" MaxLength="20" ReadOnly="True"></asp:TextBox></td>
- <td style="height: 15px">
- <span style="font-size: 9pt">部门地址</span></td>
- <td style="height: 15px; text-align: left; width: 203px;">
- <asp:TextBox ID="txtDeptAddress" runat="server" MaxLength="400" ReadOnly="True"></asp:TextBox></td>
- </tr>
- <tr>
- <td style="height: 19px">
- <span style="font-size: 9pt">部门邮编</span></td>
- <td style="height: 19px; text-align: left">
- <asp:TextBox ID="txtPostCard" runat="server" MaxLength="20" ReadOnly="True"></asp:TextBox></td>
- <td style="height: 19px">
- <span style="font-size: 9pt">建立时间</span></td>
- <td style="width: 203px; height: 19px; text-align: left">
- <asp:TextBox ID="txtBaseTime" runat="server" ReadOnly="True"></asp:TextBox>
- <asp:CompareValidator ID="CompareValidator1" runat="server" ControlToValidate="txtBaseTime"
- ErrorMessage="格式:yyyy-mm-dd" Operator="DataTypeCheck" Type="Date" Width="3px">*</asp:CompareValidator></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="txtDescript" runat="server" Height="200px" TextMode="MultiLine" Width="448px" MaxLength="300" ReadOnly="True"></asp:TextBox></td>
- </tr>
- <tr>
- <td style="height: 180px">
- </td>
- </tr>
- <tr>
- <td colspan="4" rowspan="1" style="text-align: center;">
- <table style="width: 113px; height: 1px" cellpadding="0" cellspacing="0">
- <tr>
- <td colspan="2" style="width: 192px; height: 43px; vertical-align: top; text-align: center;">
- <asp:Panel ID="Panel1" runat="server" Height="15px" Width="125px" Visible="False">
- <asp:Button ID="btnEdit" runat="server" Text="编辑" CausesValidation="False" Font-Size="9pt" OnClick="btnEdit_Click" />
- <asp:Button ID="btnDelete" runat="server" Text="删除" Enabled="False" Font-Size="9pt" OnClick="btnDelete_Click" />
- <asp:Button ID="btnSave" runat="server" Text="保存" Enabled="False" Font-Size="9pt" OnClick="btnSave_Click" />
- </asp:Panel>
- </td>
- <td style="height: 43px; vertical-align: top; width: 37px; text-align: center;">
- <asp:Button ID="btnBack" runat="server" Text="返回" CausesValidation="False" Font-Size="9pt" OnClick="btnBack_Click" /></td>
- </tr>
- </table>
- <asp:ValidationSummary ID="ValidationSummary1" runat="server" Font-Size="9pt" ShowMessageBox="True"
- ShowSummary="False" />
- </td>
- </tr>
- </table>
- </div>
- </form>
- </body>
- </html>