75 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WelderTestInfoEdit.aspx.cs" Inherits="FineUIPro.Web.WelderManage.WelderTestInfoEdit" %>
 | |
| 
 | |
| <!DOCTYPE html>
 | |
| 
 | |
| <html xmlns="http://www.w3.org/1999/xhtml">
 | |
| <head runat="server">
 | |
|     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 | |
|     <title></title>
 | |
| </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:Label runat="server" ID="lbWedlerName" Label="焊工姓名" LabelWidth="120px"></f:Label>
 | |
|                         <f:Label runat="server" ID="lbWedlerCode" Label="焊工代号" LabelWidth="120px"></f:Label>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:DropDownList ID="drpWeldMethod" Required="true" ShowRedStar="true" Label="焊接方法" EmptyText="请选择"  runat="server">
 | |
| 
 | |
|                         </f:DropDownList>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:DropDownList ID="drpMaterialType" Label="焊接材质" EnableMultiSelect="true" EnableCheckBoxSelect="true"
 | |
|                             runat="server" LabelAlign="right"></f:DropDownList>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:DatePicker runat="server" Required="true" ShowRedStar="true" DateFormatString="yyyy-MM-dd" Label="考试日期" ID="txtCheckDate" LabelWidth="120px" EnableEdit="false">
 | |
|                         </f:DatePicker>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                     
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:DropDownList ID="drpIsPass" runat="server" Label="是否合格" Required="true" ShowRedStar="true" LabelWidth="120px">
 | |
|                             <f:ListItem Value="是" Text="是" Selected="true" />
 | |
|                             <f:ListItem Value="否" Text="否" />
 | |
|                         </f:DropDownList>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:TextArea ID="txtRemark" runat="server" Label="备注" TableRowspan="6"></f:TextArea>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|             </Rows>
 | |
|             <Toolbars>
 | |
|                 <f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
 | |
|                     <Items>
 | |
|                         <f:Label runat="server" ID="lbTemp"></f:Label>
 | |
|                         <f:ToolbarFill ID="ToolbarFill1" runat="server"></f:ToolbarFill>
 | |
|                         <f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1"
 | |
|                             OnClick="btnSave_Click">
 | |
|                         </f:Button>
 | |
|                         <f:Button ID="btnClose" EnablePostBack="false" ToolTip="关闭" runat="server" Icon="SystemClose">
 | |
|                         </f:Button>
 | |
|                     </Items>
 | |
|                 </f:Toolbar>
 | |
|             </Toolbars>
 | |
|         </f:Form>
 | |
| 
 | |
|     </form>
 | |
| </body>
 | |
| </html>
 |