81 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestRunMonthSummaryEdit.aspx.cs" Inherits="FineUIPro.Web.Personal.TestRunMonthSummaryEdit" %>
 | |
| 
 | |
| <!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" LabelWidth="140px"
 | |
|             BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
 | |
|             <Rows>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:DatePicker runat="server" Label="填报日期" ID="txtRaiseDate" LabelWidth="170px" LabelAlign="Right" DateFormatString="yyyy-MM-dd"></f:DatePicker>
 | |
|                         <f:TextBox runat="server" ID="txtMajor" Label="填报专业" LabelWidth="100px" LabelAlign="Right"></f:TextBox>
 | |
|                         <f:TextBox runat="server" ID="txtProcessName" Label="装置" LabelWidth="100px" LabelAlign="Right"></f:TextBox>
 | |
|                         <f:Label ID="lbUserName" runat="server" Label="填报人" LabelWidth="100px" LabelAlign="Right"></f:Label>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:DropDownList ID="drpProject" runat="server" Label="项目名称" Width="300px" LabelWidth="170px" LabelAlign="Right"
 | |
|                             EnableEdit="true">
 | |
|                         </f:DropDownList>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:TextArea runat="server" ID="txtProblemDescription" Label="案例描述" LabelWidth="170px" LabelAlign="Right"></f:TextArea>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:TextArea runat="server" ID="txtHandleMethod" Label="案例分析及解决方案" LabelWidth="170px" LabelAlign="Right"></f:TextArea>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:TextArea runat="server" ID="txtExperienceOrSuggestion" Label="体会或建议" LabelWidth="170px" LabelAlign="Right"></f:TextArea>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:Panel ShowHeader="false" ShowBorder="false" Layout="Column" runat="server">
 | |
|                             <Items>
 | |
| 
 | |
|                                 <f:Label runat="server" Text="" EncodeText="false" Label="附件" Width="170px" LabelAlign="Right"></f:Label>
 | |
|                                 <f:Button ID="btnAttach" Text="问题图片" ToolTip="问题图片上传及查看" Icon="TableCell" OnClick="btnAttach_Click" runat="server">
 | |
|                                 </f:Button>
 | |
|                                 <f:Button ID="btnAttachR" Text="处理后图片" ToolTip="处理后图片上传及查看" Icon="TableCell" OnClick="btnAttachR_Click" runat="server">
 | |
|                                 </f:Button>
 | |
|                             </Items>
 | |
|                         </f:Panel>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|             </Rows>
 | |
|             <Toolbars>
 | |
|                 <f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
 | |
|                     <Items>
 | |
|                         <f:HiddenField runat="server" ID="hdId"></f:HiddenField>
 | |
|                         <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>
 | |
|         <f:Window ID="WindowAtt" Title="弹出窗体" Hidden="true" EnableIFrame="true" EnableMaximize="true"
 | |
|             Target="Parent" EnableResize="false" runat="server" IsModal="true" Width="700px" OnClose="WindowAtt_Close"
 | |
|             Height="500px">
 | |
|         </f:Window>
 | |
|     </form>
 | |
| </body>
 | |
| </html>
 |