63 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			63 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
|  | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PersonMeetingEdit.aspx.cs" Inherits="FineUIPro.Web.Personal.PersonMeetingEdit" %> | ||
|  | 
 | ||
|  | <!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" 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:TextBox ID="txtMeetingTitle" runat="server" Label="主题" Required="true"  | ||
|  |                             MaxLength="500" ShowRedStar="true" FocusOnPageLoad="true" > | ||
|  |                         </f:TextBox> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |                 <f:FormRow> | ||
|  |                     <Items> | ||
|  |                         <f:DropDownList runat="server" ID="drpAttendeeManIds" Label="参会人员"  AutoPostBack="true" OnSelectedIndexChanged="drpAttendeeManIds_SelectedIndexChanged" | ||
|  |                             EnableEdit="true" ShowRedStar="true"  EnableMultiSelect="true" EnableCheckBoxSelect="true"></f:DropDownList> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |                 <f:FormRow> | ||
|  |                     <Items> | ||
|  |                         <f:TextBox ID="txtConferenceLink" runat="server" Label="链接地址" Required="true" MaxLength="2000" | ||
|  |                             ShowRedStar="true"> | ||
|  |                         </f:TextBox> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |                 <f:FormRow> | ||
|  |                     <Items> | ||
|  |                         <f:DatePicker ID="txtMeetingDate" runat="server" Label="会议日期"  DateFormatString="yyyy-MM-dd HH:mm" | ||
|  |                             ShowRedStar="true" Required="true" ShowTime="true" ShowSecond="false"> | ||
|  |                         </f:DatePicker> | ||
|  |                         <f:DropDownList ID="drpCompileMan" runat="server" Label="整理人"> | ||
|  |                         </f:DropDownList> | ||
|  |                     </Items> | ||
|  |                 </f:FormRow> | ||
|  |             </Rows> | ||
|  |             <Toolbars> | ||
|  |                 <f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server"> | ||
|  |                     <Items> | ||
|  |                         <f:HiddenField ID="hdCheckerId" runat="server"> | ||
|  |                         </f:HiddenField> | ||
|  |                         <f:Button ID="btnSave" Icon="SystemSave" runat="server" ValidateForms="SimpleForm1" OnClick="btnSave_Click"> | ||
|  |                         </f:Button> | ||
|  |                         <f:Button ID="btnClose" EnablePostBack="false" | ||
|  |                             runat="server" Icon="SystemClose"> | ||
|  |                         </f:Button> | ||
|  |                     </Items> | ||
|  |                 </f:Toolbar> | ||
|  |             </Toolbars> | ||
|  |         </f:Form> | ||
|  |     </form> | ||
|  | </body> | ||
|  | </html> |