| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /SolidCP/Portal/DesktopModules/SolidCP/ |
Upload File : |
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WebSitesEditHeliconApeFolderAuth.ascx.cs" Inherits="SolidCP.Portal.WebSitesEditHeliconApeFolderAuth" %>
<%@ Register Src="UserControls/FileLookup.ascx" TagName="FileLookup" TagPrefix="uc1" %>
<%@ Register TagPrefix="scp" TagName="CollapsiblePanel" Src="UserControls/CollapsiblePanel.ascx" %>
<div class="panel-body form-horizontal">
<table cellSpacing="0" cellPadding="0" width="100%">
<tr>
<td>
<table cellSpacing="0" cellPadding="5" width="100%">
<tr>
<td class="SubHead" style="width: 150px;">
<asp:Label ID="lblFolderTitle" runat="server" meta:resourcekey="lblFolderTitle" Text="AuthName"></asp:Label>
</td>
<td class="NormalBold">
<asp:TextBox ID="txtTitle" runat="server" Width="200" CssClass="form-control"></asp:TextBox>
</td>
</tr>
<tr>
<td class="SubHead"><asp:Label ID="lblFolderName" runat="server" meta:resourcekey="lblFolderName" Text="Folder Path"></asp:Label></td>
<td class="NormalBold">
<uc1:FileLookup id="folderPath" runat="server" Width="250">
</uc1:FileLookup></td>
</tr>
<tr>
<td class="SubHead"><asp:Label ID="lblAythType" runat="server" meta:resourcekey="lblAuthType" Text="AuthType"></asp:Label></td>
<td class="NormalBold">
<asp:RadioButtonList runat="server" ID="rblAuthType">
</asp:RadioButtonList>
</td>
</tr>
</table>
<scp:CollapsiblePanel id="secUsers" runat="server"
TargetControlID="UsersPanel" meta:resourcekey="secUsers" Text="Allowed Users">
</scp:CollapsiblePanel>
<asp:Panel ID="UsersPanel" runat="server" Height="0" style="overflow:hidden;">
<table cellspacing="0" cellpadding="3" width="100%">
<tr>
<td colspan="2">
<asp:checkboxlist id="dlUsers" CellPadding="3" RepeatColumns="2" CssClass="NormalBold" Runat="server"
DataValueField="Name" DataTextField="Name"></asp:checkboxlist>
</td>
</tr>
</table>
</asp:Panel>
<scp:CollapsiblePanel id="secGroups" runat="server"
TargetControlID="GroupsPanel" meta:resourcekey="secGroups" Text="Allowed Groups">
</scp:CollapsiblePanel>
<asp:Panel ID="GroupsPanel" runat="server" Height="0" style="overflow:hidden;">
<table cellspacing="0" cellpadding="3" width="100%">
<tr>
<td colspan="2">
<asp:checkboxlist id="dlGroups" CellPadding="3" RepeatColumns="2" CssClass="NormalBold" Runat="server"
DataValueField="Name" DataTextField="Name"></asp:checkboxlist>
</td>
</tr>
</table>
</asp:Panel>
</td>
</tr>
</table>
</div>
<div class="panel-footer text-right">
<CPCC:StyleButton id="btnCancel" CssClass="btn btn-warning" runat="server" CausesValidation="False" OnClick="btnCancel_Click"> <i class="fa fa-times"> </i> <asp:Localize runat="server" meta:resourcekey="btnCancel"/> </CPCC:StyleButton>
<CPCC:StyleButton id="btnUpdate" CssClass="btn btn-success" runat="server" OnClick="btnUpdate_Click" > <i class="fa fa-refresh"> </i> <asp:Localize runat="server" meta:resourcekey="btnUpdate"/> </CPCC:StyleButton>
</div>