insertgy_person.aspx
来自「为了便于企业对客户按照地区进行统计查询分析」· ASPX 代码 · 共 117 行
ASPX
117 行
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="InsertGy_person.aspx.cs" Inherits="InsertGy_person" %>
<!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>
<script language="javascript" type="text/javascript">
// <!CDATA[
function Reset1_onclick() {
}
// ]]>
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<table>
<tr>
<td align="left" style="font-size: 12px; width: 519px; color: red; height: 16px">
基本信息→添加员工设置</td>
</tr>
</table>
<br />
<table align="center" style="width: 434px; height: 367px" bordercolordark="#003399" border="1" cellspacing="0">
<tr>
<td align="center" colspan="2" style="height: 36px; color: white; background-color: #003399;">
添加员工设置</td>
</tr>
<tr>
<td align="right" style="width: 204px" >
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="Person_code"
ErrorMessage="员工编码不能为空">*</asp:RequiredFieldValidator>员工编码:</td>
<td style="width: 299px" align="left" >
<asp:TextBox ID="Person_code" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td align="right" style="width: 204px; height: 28px;" >
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="Person_name"
ErrorMessage="员工姓名不能为空">*</asp:RequiredFieldValidator>员工姓名:</td>
<td style="width: 299px; height: 28px;" align="left" >
<asp:TextBox ID="Person_name" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td align="right" style="width: 204px">
员工性别:</td>
<td align="left" style="width: 299px">
<asp:DropDownList ID="Person_age" runat="server">
<asp:ListItem Value="男"></asp:ListItem>
<asp:ListItem Value="女"></asp:ListItem>
</asp:DropDownList></td>
</tr>
<tr>
<td align="right" style="width: 204px" >
<asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ControlToValidate="Person_age"
ErrorMessage="员工年龄不能为空">*</asp:RequiredFieldValidator>员工年龄:</td>
<td style="width: 299px" align="left" >
<asp:TextBox ID="ProducePlace" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td align="right" style="width: 204px">
<asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server" ControlToValidate="Person_email"
ErrorMessage="员工的Email不能为空">*</asp:RequiredFieldValidator>员工的Email:</td>
<td style="width: 299px" align="left" >
<asp:TextBox ID="Person_email" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td align="right" style="width: 204px; height: 28px;" >
<asp:RequiredFieldValidator ID="RequiredFieldValidator5" runat="server" ControlToValidate="Person_telephone"
ErrorMessage="员工联系方式不能为空">*</asp:RequiredFieldValidator>员工联系方式:</td>
<td style="width: 299px; height: 28px;" align="left" >
<asp:TextBox ID="Person_telephone" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td align="right" style="width: 204px; height: 26px;" >
员工的部门:</td>
<td style="width: 299px; height: 26px;" align="left" >
<asp:DropDownList ID="DropDownList1" runat="server">
</asp:DropDownList></td>
</tr>
<tr>
<td align="right" style="width: 204px" >
员工的权限:</td>
<td style="width: 299px" align="left" >
<asp:DropDownList ID="CompanyId" runat="server">
</asp:DropDownList></td>
</tr>
<tr>
<td align="right" style="width: 204px; height: 64px;" >
备注:</td>
<td style="width: 299px; height: 64px;" >
<asp:TextBox ID="Remark" runat="server" TextMode="MultiLine" Width="284px" Height="52px">无</asp:TextBox></td>
</tr>
<tr>
<td align="right" style="width: 204px">
<asp:RequiredFieldValidator ID="RequiredFieldValidator6" runat="server" ControlToValidate="Person_password"
ErrorMessage="员工登录密码不能为空">*</asp:RequiredFieldValidator>员工登录密码:</td>
<td style="width: 299px">
<asp:TextBox ID="Person_password" runat="server" TextMode="Password" Width="160px"></asp:TextBox></td>
</tr>
<tr>
<td colspan="2" align="center">
<asp:Button ID="Button1" runat="server" Text=" 添加 " OnClick="Button1_Click" />
<input id="Reset1" type="reset" value=" 重置 " onclick="return Reset1_onclick()" />
<asp:ValidationSummary ID="ValidationSummary1" runat="server" ShowMessageBox="True"
ShowSummary="False" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?