68 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TrustBatchOut.aspx.cs" Inherits="FineUIPro.Web.WeldingProcess.TrustManage.TrustBatchOut" %>
 | 
						|
 | 
						|
<!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:DropDownList ID="drpUnit" Label="<%$ Resources:Lan,UnitName %>" runat="server"
 | 
						|
                            ShowRedStar="true" Required="true" EnableEdit="true" LabelWidth="130px" AutoPostBack="true"
 | 
						|
                            OnSelectedIndexChanged="drpUnit_SelectedIndexChanged">
 | 
						|
                        </f:DropDownList>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
                <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
                        <f:DropDownList ID="drpInstallation" runat="server" Label="<%$ Resources:Lan,InstallationName %>"
 | 
						|
                            LabelAlign="Right" EnableEdit="true" ShowRedStar="true" Required="true" AutoPostBack="true"
 | 
						|
                            OnSelectedIndexChanged="drpInstallation_SelectedIndexChanged" LabelWidth="130px">
 | 
						|
                        </f:DropDownList>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
                <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
                        <f:DropDownList ID="drpDetectionType" Label="<%$ Resources:Lan,NDEType %>" runat="server"
 | 
						|
                            EnableEdit="true" LabelWidth="130px" ShowRedStar="true" Required="true" AutoPostBack="true"
 | 
						|
                            OnSelectedIndexChanged="drpDetectionType_SelectedIndexChanged">
 | 
						|
                        </f:DropDownList>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
                <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
                        <f:TextBox ID="txtPipelineCode" Label="<%$ Resources:Lan,PipelineCode %>" runat="server"
 | 
						|
                            LabelWidth="130px" AutoPostBack="true" OnTextChanged="txtPipelineCode_TextChanged">
 | 
						|
                        </f:TextBox>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
 | 
						|
                <f:FormRow>
 | 
						|
                    <Items>
 | 
						|
                        <f:DropDownList ID="drpBatchTrust" Label="<%$ Resources:Lan,RequestSheetNumber %>"
 | 
						|
                            runat="server"  EnableEdit="true" LabelWidth="130px" EnableCheckBoxSelect="true" EnableMultiSelect="true">
 | 
						|
                        </f:DropDownList>
 | 
						|
                    </Items>
 | 
						|
                </f:FormRow>
 | 
						|
            </Rows>
 | 
						|
            <Toolbars>
 | 
						|
                <f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
 | 
						|
                    <Items>
 | 
						|
                        <f:Button ID="btnExport" OnClick="btnExport_Click" runat="server" Text="导出" ToolTip="Export"
 | 
						|
                            Icon="DoorOut" EnableAjax="false"  EnablePress="true" Pressed="false" >
 | 
						|
                        </f:Button>
 | 
						|
                    </Items>
 | 
						|
                </f:Toolbar>
 | 
						|
            </Toolbars>
 | 
						|
        </f:Form>
 | 
						|
    </form>
 | 
						|
</body>
 | 
						|
</html>
 |