61 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="QualificationEdit.aspx.cs" Inherits="FineUIPro.Web.BaseInfo.QualificationEdit" %>
 | |
| 
 | |
| <!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" runat="server" />
 | |
|         <f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
 | |
|             BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
 | |
|             <Rows>
 | |
|                 <f:FormRow runat="server">
 | |
|                     <Items>
 | |
|                         <f:TextBox ID="txtQualificationCode" runat="server" Label="资质编号" Required="true" MaxLength="70" ShowRedStar="true" LabelWidth="110px">
 | |
|                         </f:TextBox>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow runat="server">
 | |
|                     <Items>
 | |
|                         <f:TextBox ID="txtQualificationName" runat="server" Label="资质名称" Required="true" MaxLength="70" ShowRedStar="true" LabelWidth="110px">
 | |
|                         </f:TextBox>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow runat="server">
 | |
|                     <Items>
 | |
|                         <f:DropDownList ID="ddlQualificationType" runat="server" Label="资质类型" LabelWidth="110px" Required="true" ShowRedStar="true" AutoSelectFirstItem="true">
 | |
|                             <f:ListItem Value="施工总承包" Text="施工总承包"></f:ListItem>
 | |
|                             <f:ListItem Value="专业承包" Text="专业承包"></f:ListItem>
 | |
|                             <f:ListItem Value="劳务分包" Text="劳务分包"></f:ListItem>
 | |
|                         </f:DropDownList>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:TextArea ID="txtRemark" runat="server" LabelWidth="110px" Height="100px" Label="备注" MaxLength="1000">
 | |
|                         </f:TextArea>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|             </Rows>
 | |
|             <Toolbars>
 | |
|                 <f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
 | |
|                     <Items>
 | |
|                         <f:HiddenField ID="hdCheckerId" runat="server">
 | |
|                         </f:HiddenField>
 | |
|                         <f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1" OnClick="btnSave_Click">
 | |
|                         </f:Button>
 | |
|                         <f:Button ID="btnClose" EnablePostBack="false"
 | |
|                             runat="server" Icon="SystemClose">
 | |
|                         </f:Button>
 | |
|                     </Items>
 | |
|                 </f:Toolbar>
 | |
|             </Toolbars>
 | |
|         </f:Form>
 | |
|     </form>
 | |
| </body>
 | |
| </html>
 |