78 lines
3.9 KiB
Plaintext
78 lines
3.9 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SelfEvaluationEdit.aspx.cs"
|
|
Inherits="FineUIPro.Web.ThreeYearAction.ConstructionStandardization.SelfEvaluationEdit" ValidateRequest="false" %>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<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" runat="server" AutoSizePanelID="SimpleForm1" />
|
|
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" Title="自我评价" AutoScroll="true"
|
|
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
|
<Rows>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtPersonPerfomanceCode" runat="server" Label="评价编号" LabelAlign="Right"
|
|
MaxLength="50" Readonly="true">
|
|
</f:TextBox>
|
|
<f:DropDownList ID="drpUnitId" runat="server" Label="分包单位" LabelAlign="Right" EnableEdit="true"
|
|
Required="true" ShowRedStar="true" AutoSelectFirstItem="false" AutoPostBack="True" FocusOnPageLoad="true"
|
|
OnSelectedIndexChanged="drpUnitId_SelectedIndexChanged">
|
|
</f:DropDownList>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:DropDownList ID="drpTeamGroupId" runat="server" Label="班组" LabelAlign="Right"
|
|
EnableEdit="true">
|
|
</f:DropDownList>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtEvaluationDef" runat="server" Label="自评描述" MaxLength="200">
|
|
</f:TextArea>
|
|
</Items>
|
|
</f:FormRow>
|
|
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:FileUpload runat="server" ID="btnFile1" EmptyText="请选择附件" OnFileSelected="btnFile1_Click"
|
|
AutoPostBack="true" Label="附件">
|
|
</f:FileUpload>
|
|
<f:ContentPanel ID="ContentPanel2" runat="server" ShowHeader="false" ShowBorder="false"
|
|
Title="附件1">
|
|
<table>
|
|
<tr style="height: 28px">
|
|
<td align="left">
|
|
<div id="divFile1" runat="server">
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</f:ContentPanel>
|
|
</Items>
|
|
</f:FormRow>
|
|
</Rows>
|
|
<Toolbars>
|
|
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
|
<Items>
|
|
<f:ToolbarFill ID="ToolbarFill1" runat="server">
|
|
</f:ToolbarFill>
|
|
<f:Button ID="btnSave" Icon="SystemSave" runat="server" ToolTip="保存" ValidateForms="SimpleForm1" Text="保存"
|
|
OnClick="btnSave_Click">
|
|
</f:Button>
|
|
<f:Button ID="btnClose" EnablePostBack="false" ToolTip="关闭" runat="server" Icon="SystemClose" Text="关闭">
|
|
</f:Button>
|
|
</Items>
|
|
</f:Toolbar>
|
|
</Toolbars>
|
|
</f:Form>
|
|
</form>
|
|
</body>
|
|
</html>
|