2025-03-27 15:05:14 +08:00

123 lines
6.0 KiB
Plaintext

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="User.ascx.cs" Inherits="SuperMap.RealEstate.HighWay.Modules.UserServerPart.User" %>
<%@ Register Assembly="RealEstate.Web" Namespace="SuperMap.RealEstate.Web.UI.WebControls"
TagPrefix="smwc" %>
<table width="100%" cellpadding="2" cellspacing="0">
<tr>
<td width="50%">
<smwc:TextBoxEx ID="User_ID" Width="100%" runat="server" CaptionText="帐户内码:" ValidType="Integer"
ReadOnly="True" Visible="False"></smwc:TextBoxEx>
</td>
<td width="50%">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
</td>
</tr>
<tr>
<td width="50%">
<smwc:DropDownListEx ID="UserType_ID" Width="100%" runat="server" CaptionText="帐户分类:"
ValidType="Integer" AllowEmpty="False">
</smwc:DropDownListEx>
</td>
<td width="50%" style="padding-left: 5px;">
<smwc:DropDownListEx ID="User_EnabledLicense" AllowEmpty="False" Width="100%" runat="server"
CaptionText="数字证书:" DisableSearch="true">
<smwc:ListItemEx Value="1">启用</smwc:ListItemEx>
<smwc:ListItemEx Value="0" Selected="True">禁用</smwc:ListItemEx>
</smwc:DropDownListEx>
</td>
</tr>
<tr>
<td width="50%">
<smwc:TextBoxEx ID="User_Name" Width="100%" runat="server" CaptionText="用户名称:" AllowEmpty="False"></smwc:TextBoxEx>
</td>
<td width="50%" style="padding-left: 5px;">
<smwc:TextBoxEx ID="User_License" Width="100%" runat="server" CaptionText="许可标识:"></smwc:TextBoxEx>
</td>
</tr>
<tr>
<td width="50%">
<asp:Panel ID="PanelUserName" DefaultButton="ButtonCheckUser" runat="server">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="100%">
<smwc:TextBoxEx ID="User_Passport" CaptionAlign="Left" Width="100%" runat="server"
CaptionText="登录帐户:" AllowEmpty="False" ValidationGroup="CheckUser"></smwc:TextBoxEx>
</td>
<td>
<asp:Button ID="ButtonCheckUser" runat="server" Text="检测账户" ValidationGroup="CheckUser"
OnClick="ButtonCheckUser_Click" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<asp:Label ID="LabelCheckUser" runat="server" Text=""></asp:Label>
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel>
</asp:Panel>
</td>
<td width="50%" style="padding-left: 5px;">
<smwc:DropDownListEx ID="User_EnabledCityAuthority" Width="100%" runat="server" AllowEmpty="False"
CaptionText="区域凭证:" DisableSearch="true" Visible="false">
<smwc:ListItemEx Value="0" Selected="True">所有城区</smwc:ListItemEx>
<smwc:ListItemEx Value="1">指定城区</smwc:ListItemEx>
</smwc:DropDownListEx>
</td>
</tr>
<tr>
<td width="50%">
<smwc:DropDownListEx ID="User_Indefinit" Width="100%" runat="server" CaptionText="用户类型:"
AllowEmpty="False" ValidType="Integer" DisableSearch="true">
<smwc:ListItemEx Value="1" Selected="True">永不过期</smwc:ListItemEx>
<smwc:ListItemEx Value="0">限时过期</smwc:ListItemEx>
</smwc:DropDownListEx>
</td>
<td width="50%" style="padding-left: 5px;" rowspan="6" valign="top">
<smwc:TextBoxEx ID="User_CityAuthority" ReadOnly="true" Width="100%" runat="server"
CaptionText="凭证标识:" TextMode="MultiLine" Rows="1" Visible="false"></smwc:TextBoxEx>
<div style="height: 210px; overflow: auto;">
<asp:CheckBoxList ID="CheckBoxList_SERVERPART" runat="server" RepeatDirection="Horizontal" RepeatLayout="Flow" RepeatColumns="3"></asp:CheckBoxList>
</div>
</td>
</tr>
<tr>
<td width="50%">
<smwc:TextBoxEx ID="User_Expiry" Width="100%" runat="server" CaptionText="有效日期:"
ValidType="DateTime" AllowEmpty="False"></smwc:TextBoxEx>
</td>
</tr>
<tr>
<td width="50%">
<smwc:TextBoxEx ID="User_Index" Width="100%" runat="server" CaptionText="显示顺序:" ValidType="Integer"
AllowEmpty="False">10</smwc:TextBoxEx>
</td>
</tr>
<tr>
<td width="50%">
<smwc:DropDownListEx ID="User_Status" Width="100%" runat="server" CaptionText="有效状态:"
AllowEmpty="False" ValidType="Integer" DisableSearch="true">
<smwc:ListItemEx Value="1" Selected="True">有效</smwc:ListItemEx>
<smwc:ListItemEx Value="0">无效</smwc:ListItemEx>
</smwc:DropDownListEx>
</td>
</tr>
<tr>
<td width="50%">
<smwc:DropDownListEx ID="User_RepeatLogon" Width="100%" runat="server" CaptionText="登录设置:"
AllowEmpty="False" ValidType="Integer" DisableSearch="true">
<smwc:ListItemEx Value="1" Selected="True">允许重复登录</smwc:ListItemEx>
<smwc:ListItemEx Value="0">不允许重复登录</smwc:ListItemEx>
</smwc:DropDownListEx>
</td>
</tr>
<tr>
<td width="50%" valign="top">
<smwc:TextBoxEx ID="User_Desc" Width="100%" runat="server" CaptionText="说明:" TextMode="MultiLine"></smwc:TextBoxEx>
</td>
</tr>
</table>