76 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			76 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
|  | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CompanyPersonView.aspx.cs" Inherits="FineUIPro.Web.ZHGL.Person.CompanyPersonView" 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" Readonly="true" | ||
|  |                             FocusOnPageLoad="true" LabelWidth="90px"> | ||
|  |                         </f:TextBox> | ||
|  |                         <f:RadioButtonList ID="rblSex" runat="server" Label="性别" LabelAlign="Right" Required="True" ShowRedStar="True" Readonly="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" Readonly="true" | ||
|  |                             LabelWidth="90px" RegexPattern="IDENTITY_CARD"> | ||
|  |                         </f:TextBox> | ||
|  |                         <f:DropDownList ID="drpWorkPost" runat="server" Label="岗位" LabelAlign="Right" Required="True" ShowRedStar="True" EnableEdit="true" Readonly="true"> | ||
|  |                                                 </f:DropDownList> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |                 <f:FormRow> | ||
|  |                     <Items> | ||
|  |                         <f:TextBox ID="txtTelephone" runat="server" Label="电话" MaxLength="50" LabelWidth="90px" Readonly="true"> | ||
|  |                         </f:TextBox> | ||
|  |                         <f:TextBox ID="txtAddress" runat="server" Label="家庭地址" MaxLength="500" LabelAlign="Right" Readonly="true"> | ||
|  |                                                 </f:TextBox> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |                 <f:FormRow> | ||
|  |                     <Items> | ||
|  |                         <f:RadioButtonList ID="rblIsOnJob" runat="server" Label="在职" LabelAlign="Right" Required="True" ShowRedStar="True" Readonly="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" Readonly="true"> | ||
|  |                                                 </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="btnClose" EnablePostBack="false" ToolTip="关闭" runat="server" Icon="SystemClose" Text="关闭"> | ||
|  |                         </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> |