63 lines
3.1 KiB
Plaintext
63 lines
3.1 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BusinessTripEdit.aspx.cs" Inherits="FineUIPro.Web.Personal.BusinessTripEdit" %>
|
|
|
|
<!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:RadioButtonList runat="server" ID="rblType" Label="出差类型" LabelWidth="100px" LabelAlign="Right" AutoPostBack="true" OnSelectedIndexChanged="rblType_SelectedIndexChanged">
|
|
<f:RadioItem Text="项目出差" Value="1" Selected="true" />
|
|
<f:RadioItem Text="其他出差" Value="2" />
|
|
</f:RadioButtonList>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<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="100px" LabelAlign="Right"
|
|
EnableEdit="true">
|
|
</f:DropDownList>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:DatePicker runat="server" Label="到达日期" ID="txtArriveDate" LabelWidth="100px" LabelAlign="Right" AutoPostBack="true" OnTextChanged="txtArriveDate_TextChanged"></f:DatePicker>
|
|
<f:DatePicker runat="server" Label="离开日期" ID="txtLeaveDate" LabelWidth="100px" LabelAlign="Right" AutoPostBack="true" OnTextChanged="txtArriveDate_TextChanged"></f:DatePicker>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:Label runat="server" ID="lbDays" Label="出差天数" LabelWidth="100px" LabelAlign="Right"></f:Label>
|
|
</Items>
|
|
</f:FormRow>
|
|
</Rows>
|
|
<Toolbars>
|
|
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
|
<Items>
|
|
<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>
|
|
</form>
|
|
</body>
|
|
</html>
|