57 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WBSIn.aspx.cs" Inherits="FineUIPro.Web.JDGL.WBS.WBSIn" %>
 | |
| 
 | |
| <!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>导入WBS</title>
 | |
|     <link href="../../res/css/common.css" rel="stylesheet" type="text/css" />
 | |
|     <style>
 | |
|         .f-grid-row .f-grid-cell-inner
 | |
|         {
 | |
|             white-space: normal;
 | |
|             word-break: break-all;
 | |
|         }
 | |
|     </style>
 | |
| </head>
 | |
| <body>
 | |
|     <form id="form1" runat="server">
 | |
|     <f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" OnCustomEvent="PageManager1_CustomEvent" />
 | |
|     <f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
 | |
|         BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
 | |
|         <Toolbars>
 | |
|             <f:Toolbar ID="Toolbar2" Position="Top" ToolbarAlign="Right" runat="server">
 | |
|                 <Items>
 | |
|                     <f:Button ID="btnAudit" Icon="ApplicationEdit" runat="server" Text="审核" ValidateForms="SimpleForm1"
 | |
|                         OnClick="btnAudit_Click">
 | |
|                     </f:Button>
 | |
|                     <f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ValidateForms="SimpleForm1"
 | |
|                         OnClick="btnSave_Click">
 | |
|                     </f:Button>
 | |
|                     <f:Button ID="btnDownLoad" runat="server" Icon="ApplicationGo" Text="下载模板" OnClick="btnDownLoad_Click">
 | |
|                     </f:Button>
 | |
|                 </Items>
 | |
|             </f:Toolbar>
 | |
|         </Toolbars>
 | |
|         <Rows>
 | |
|             <f:FormRow>
 | |
|                 <Items>
 | |
|                     <f:FileUpload runat="server" ID="fuAttachUrl" EmptyText="选择要导入的文件" Label="选择要导入的文件"
 | |
|                         LabelWidth="150px">
 | |
|                     </f:FileUpload>
 | |
|                 </Items>
 | |
|             </f:FormRow>
 | |
|             <f:FormRow>
 | |
|                 <Items>
 | |
|                     <f:HiddenField ID="hdFileName" runat="server">
 | |
|                     </f:HiddenField>
 | |
|                     <f:HiddenField ID="hdCheckResult" runat="server">
 | |
|                     </f:HiddenField>
 | |
|                 </Items>
 | |
|             </f:FormRow>
 | |
|         </Rows>
 | |
|     </f:Form>
 | |
|     </form>
 | |
| </body>
 | |
| </html> |