79 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CompanyPersonEdit.aspx.cs" Inherits="FineUIPro.Web.ZHGL.Person.CompanyPersonEdit" ValidateRequest="false" %>
 | |
| 
 | |
| <!DOCTYPE html>
 | |
| 
 | |
| <html xmlns="http://www.w3.org/1999/xhtml">
 | |
| <head runat="server">
 | |
|     <title>编辑用户</title>
 | |
|     <link href="../res/css/common.css" rel="stylesheet" type="text/css" />
 | |
| </head>
 | |
| <body>
 | |
|     <form id="form1" runat="server">
 | |
|         <f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" />
 | |
|         <f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
 | |
|             BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
 | |
|             <Rows>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:TextBox ID="txtPersonName" runat="server" Label="姓名" Required="true" ShowRedStar="true" MaxLength="50"
 | |
|                             FocusOnPageLoad="true" LabelWidth="90px">
 | |
|                         </f:TextBox>
 | |
|                         <f:RadioButtonList ID="rblSex" runat="server" Label="性别" LabelAlign="Right" Required="True" ShowRedStar="True">
 | |
|                             <f:RadioItem Value="1" Text="男" Selected="true" />
 | |
|                             <f:RadioItem Value="2" Text="女" />
 | |
|                         </f:RadioButtonList>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:TextBox ID="txtIdentityCard" runat="server" Label="身份证号" MaxLength="50" ShowRedStar="true" Required="true"
 | |
|                             LabelWidth="90px" RegexPattern="IDENTITY_CARD">
 | |
|                         </f:TextBox>
 | |
|                         <f:DropDownList ID="drpWorkPost" runat="server" Label="岗位" LabelAlign="Right" Required="True" ShowRedStar="True" EnableEdit="true">
 | |
|                                                 </f:DropDownList>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:TextBox ID="txtTelephone" runat="server" Label="电话" MaxLength="50" LabelWidth="90px">
 | |
|                         </f:TextBox>
 | |
|                         <f:TextBox ID="txtAddress" runat="server" Label="家庭地址" MaxLength="500" LabelAlign="Right" >
 | |
|                                                 </f:TextBox>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:RadioButtonList ID="rblIsOnJob" runat="server" Label="在职" LabelAlign="Right" Required="True" ShowRedStar="True">
 | |
|                             <f:RadioItem Value="True" Text="是" Selected="true" />
 | |
|                             <f:RadioItem Value="False" Text="否" />
 | |
|                         </f:RadioButtonList>
 | |
|                         <f:TextBox ID="txtRemark" runat="server" Label="备注" MaxLength="500" LabelAlign="Right" >
 | |
|                                                 </f:TextBox>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|             </Rows>
 | |
|             <Toolbars>
 | |
|                 <f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
 | |
|                     <Items>
 | |
|                         <f:Button ID="btnAttachUrl" Text="附件" ToolTip="附件上传及查看" Icon="TableCell" runat="server"
 | |
|                         OnClick="btnAttachUrl_Click" ValidateForms="SimpleForm1">
 | |
|                     </f:Button>
 | |
|                         <f:ToolbarFill runat="server"></f:ToolbarFill>
 | |
|                         <f:HiddenField runat="server" ID="hdCompanyBranchPersonId"></f:HiddenField>
 | |
|                         <f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1" Hidden="true" Text="保存"
 | |
|                             OnClick="btnSave_Click">
 | |
|                         </f:Button>
 | |
|                         <f:Button ID="btnClose" EnablePostBack="false" ToolTip="关闭" Text="关闭" runat="server" Icon="SystemClose">
 | |
|                         </f:Button>
 | |
|                     </Items>
 | |
|                 </f:Toolbar>
 | |
|             </Toolbars>
 | |
|         </f:Form>
 | |
|         <f:Window ID="WindowAtt" Title="附件" Hidden="true" EnableIFrame="true" EnableMaximize="true"
 | |
|         Target="Parent" EnableResize="false" runat="server" IsModal="true" Width="700px"
 | |
|         Height="500px">
 | |
|     </f:Window>
 | |
|     </form>
 | |
| </body>
 | |
| </html>
 |