ChengDa_English/SGGL/FineUIPro.Web/SysManage/ADomain.aspx

61 lines
2.9 KiB
Plaintext
Raw Normal View History

2022-12-20 09:32:32 +08:00
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ADomain.aspx.cs" Inherits="FineUIPro.Web.SysManage.ADomain" %>
<!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:TextBox ID="txtDomainName" runat="server" Label="域名" MaxLength="500"
Required="true" ShowRedStar="true" LabelWidth="120px" Readonly="true">
</f:TextBox>
<f:TextBox ID="txtRootOU" runat="server" Label="根组织单位" MaxLength="500"
LabelWidth="120px" Required="true" ShowRedStar="true">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextBox ID="txtUserName" runat="server" Label="用户名" MaxLength="100"
LabelWidth="120px" Required="true" ShowRedStar="true">
</f:TextBox>
<f:TextBox ID="txtPassword" runat="server" Label="密码" MaxLength="100"
LabelWidth="120px" Required="true" ShowRedStar="true" TextMode="Password">
</f:TextBox>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:NumberBox ID="txtIntervaltime" runat="server" Label="同步频率(分钟)" LabelWidth="120px"
NoDecimal="true" NoNegative="true" Readonly="true">
</f:NumberBox>
</Items>
</f:FormRow>
</Rows>
<Toolbars>
<f:Toolbar ID="Toolbar1" Position="Top" ToolbarAlign="Right" runat="server">
<Items>
<f:Button ID="btnConnect" Icon="Connect" runat="server" Text="连接"
Hidden="true" OnClick="btnConnect_Click">
</f:Button>
<f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="同步"
Hidden="true" OnClick="btnSave_Click">
</f:Button>
</Items>
</f:Toolbar>
</Toolbars>
</f:Form>
</form>
</body>
</html>