113 lines
5.2 KiB
Plaintext
113 lines
5.2 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AddNotice.aspx.cs" Inherits="FineUIPro.Web.common.Notice.AddNotice" %>
|
|
|
|
<!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" />
|
|
<style type="text/css">
|
|
.labcenter
|
|
{
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</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"
|
|
Layout="VBox" BodyPadding="10px" runat="server" RedStarPosition="BeforeText"
|
|
LabelAlign="Right">
|
|
<Rows>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextBox ID="txtNoticeCode" runat="server" Label="通知编号" Required="true" ShowRedStar="true"
|
|
FocusOnPageLoad="true" MaxLength="30">
|
|
</f:TextBox>
|
|
<f:TextBox ID="txtNoticeTitle" runat="server" Label="通知标题" Required="true" ShowRedStar="true"
|
|
MaxLength="50">
|
|
</f:TextBox>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:DropDownList ID="drpClearUpMan" Label="整理人" AutoPostBack="false" EnableSimulateTree="true"
|
|
runat="server">
|
|
</f:DropDownList>
|
|
<f:DropDownList ID="drpIsRelease" Label="是否发布" AutoPostBack="false" EnableSimulateTree="true"
|
|
runat="server">
|
|
<f:ListItem Value="False" Text="未发布"/>
|
|
</f:DropDownList>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:LinkButton ID="btnAttachUrl" runat="server" Label="附件" LabelWidth="100px" ValidateForms="SimpleForm1" Text="上传和查看" OnClick="btnAttachUrl_Click"></f:LinkButton>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:TextArea ID="txtMainContent" runat="server" MaxLength="500" Label="主要内容"></f:TextArea>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow runat="server" ID="trSystems">
|
|
<Items>
|
|
<f:DropDownList ID="drpSystems" runat="server" Label="接收系统" EnableEdit="true" LabelWidth="80px"
|
|
LabelAlign="right" Width="340px" EnableMultiSelect="true">
|
|
</f:DropDownList>
|
|
</Items>
|
|
</f:FormRow>
|
|
<f:FormRow runat="server" ID="trProjects">
|
|
<Items>
|
|
<f:DropDownList ID="drpProjects" runat="server" Label="接收项目" EnableEdit="true" LabelWidth="80px"
|
|
LabelAlign="right" Width="340px" EnableMultiSelect="true">
|
|
</f:DropDownList>
|
|
</Items>
|
|
</f:FormRow>
|
|
</Rows>
|
|
<Rows>
|
|
<f:FormRow ColumnWidths="15% 85%">
|
|
<Items>
|
|
<f:Label ID="Label25" runat="server" Text="下一步流程设置" CssClass="labcenter">
|
|
</f:Label>
|
|
<f:Label ID="lbHidden" runat="server" Hidden="true"></f:Label>
|
|
</Items>
|
|
</f:FormRow>
|
|
</Rows>
|
|
<Rows>
|
|
<f:FormRow>
|
|
<Items>
|
|
<f:DropDownList ID="drpSignStep" Label="办理步骤" AutoPostBack="false" EnableSimulateTree="true"
|
|
runat="server">
|
|
<f:ListItem Value="2" Text="校核" />
|
|
</f:DropDownList>
|
|
<f:DropDownList ID="drpSignMan" Label="办理人员" AutoPostBack="false" EnableSimulateTree="true"
|
|
runat="server">
|
|
</f:DropDownList>
|
|
</Items>
|
|
</f:FormRow>
|
|
</Rows>
|
|
<Toolbars>
|
|
<f:Toolbar ID="Toolbar1" Position="Bottom" ToolbarAlign="Right" runat="server">
|
|
<Items>
|
|
<f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="提交数据" ValidateForms="SimpleForm1"
|
|
OnClick="btnSave_Click" >
|
|
</f:Button>
|
|
<f:Button ID="btnClose" EnablePostBack="false" Text="关闭" runat="server" Icon="SystemClose">
|
|
</f:Button>
|
|
<f:HiddenField ID="hdCompileMan" runat="server">
|
|
</f:HiddenField>
|
|
</Items>
|
|
</f:Toolbar>
|
|
</Toolbars>
|
|
</f:Form>
|
|
<f:Window ID="WindowAtt" Title="弹出窗体" Hidden="true" EnableIFrame="true" EnableMaximize="true"
|
|
Target="Parent" EnableResize="true" runat="server" IsModal="true" Width="700px"
|
|
Height="500px">
|
|
</f:Window>
|
|
</form>
|
|
</body>
|
|
</html>
|