86 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PersonPlanEdit.aspx.cs" Inherits="FineUIPro.Web.Person.PersonPlanEdit" %>
 | |
| 
 | |
| <!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>
 | |
|     <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="drpDepartId" runat="server" Label="部门" EnableEdit="true"
 | |
|                             Required="true" ShowRedStar="true">
 | |
|                         </f:DropDownList>
 | |
|                         <f:DropDownList ID="drpUserId" runat="server" Label="姓名" EnableEdit="true"
 | |
|                             Required="true" ShowRedStar="true">
 | |
|                         </f:DropDownList>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:TextBox ID="txtMajor" runat="server" Label="专业" Required="true" ShowRedStar="true"></f:TextBox>
 | |
|                         <f:DropDownList ID="drpProjectId" runat="server" Label="项目名称" EnableEdit="true"
 | |
|                             Required="true" ShowRedStar="true">
 | |
|                         </f:DropDownList>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:DropDownList ID="drpPersonType" runat="server" Label="人员类型" EnableEdit="true"
 | |
|                             Required="true" ShowRedStar="true">
 | |
|                         </f:DropDownList>
 | |
|                         <f:TextBox ID="txtYear" runat="server" Label="年份" Readonly="true"></f:TextBox>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:CheckBox ID="checkbox1" runat="server" Label="1月"></f:CheckBox>
 | |
|                         <f:CheckBox ID="checkbox2" runat="server" Label="2月"></f:CheckBox>
 | |
|                         <f:CheckBox ID="checkbox3" runat="server" Label="3月"></f:CheckBox>
 | |
|                         <f:CheckBox ID="checkbox4" runat="server" Label="4月"></f:CheckBox>
 | |
|                         <f:CheckBox ID="checkbox5" runat="server" Label="5月"></f:CheckBox>
 | |
|                         <f:CheckBox ID="checkbox6" runat="server" Label="6月"></f:CheckBox>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:CheckBox ID="checkbox7" runat="server" Label="7月"></f:CheckBox>
 | |
|                         <f:CheckBox ID="checkbox8" runat="server" Label="8月"></f:CheckBox>
 | |
|                         <f:CheckBox ID="checkbox9" runat="server" Label="9月"></f:CheckBox>
 | |
|                         <f:CheckBox ID="checkbox10" runat="server" Label="10月"></f:CheckBox>
 | |
|                         <f:CheckBox ID="checkbox11" runat="server" Label="11月"></f:CheckBox>
 | |
|                         <f:CheckBox ID="checkbox12" runat="server" Label="12月"></f:CheckBox>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|                 <f:FormRow>
 | |
|                     <Items>
 | |
|                         <f:TextArea ID="txtRemark" runat="server" Label="备注"></f:TextArea>
 | |
|                     </Items>
 | |
|                 </f:FormRow>
 | |
|             </Rows>
 | |
|             <Toolbars>
 | |
|                 <f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
 | |
|                     <Items>
 | |
|                         <f:ToolbarFill runat="server">
 | |
|                         </f:ToolbarFill>
 | |
|                         <f:Button ID="btnSave" Icon="SystemSave" ToolTip="保存" 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>
 |