| 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/UserControls/ |
Upload File : |
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="AllocatePackageVLANs.ascx.cs" Inherits="SolidCP.Portal.UserControls.AllocatePackageVLANs" %>
<%@ Register Src="SimpleMessageBox.ascx" TagName="SimpleMessageBox" TagPrefix="scp" %>
<scp:SimpleMessageBox id="messageBox" runat="server" />
<asp:ValidationSummary ID="validatorsSummary" runat="server"
ValidationGroup="AddVLAN" ShowMessageBox="True" ShowSummary="False" />
<ul id="ErrorMessagesList" runat="server" visible="false">
<li id="EmptyVLANsMessage" runat="server">
<asp:Localize ID="locNotEnougVLANs" runat="server" Text="Not enough..." meta:resourcekey="locNotEnoughVLANs"></asp:Localize>
</li>
<li id="QuotaReachedMessage" runat="server">
<asp:Localize ID="locQuotaReached" runat="server" Text="Quota reached..." meta:resourcekey="locQuotaReached"></asp:Localize>
</li>
</ul>
<asp:UpdatePanel runat="server" ID="VLANsTable" UpdateMode="Conditional">
<ContentTemplate>
<table style="width: 100%;">
<tr>
<td>
<asp:RadioButton ID="radioVLANRandom" runat="server" AutoPostBack="true"
meta:resourcekey="radioVLANRandom" Text="Randomly select VLANs from the pool"
Checked="True" GroupName="VLAN"
oncheckedchanged="radioVLANRandom_CheckedChanged" />
</td>
</tr>
<tr id="VLANsNumberRow" runat="server">
<td style="padding-left: 30px;">
<asp:Localize ID="locVLANs" runat="server"
meta:resourcekey="locVLANs" Text="Number of VLANs:"></asp:Localize>
<asp:TextBox ID="txtVLANsNumber" runat="server" CssClass="form-control" Width="50"></asp:TextBox>
<asp:RequiredFieldValidator ID="VLANsValidator" runat="server" Text="*" Display="Dynamic"
ControlToValidate="txtVLANsNumber" meta:resourcekey="VLANsValidator" SetFocusOnError="true"
ValidationGroup="AddVLAN">*</asp:RequiredFieldValidator>
<asp:Literal ID="litMaxVLANs" runat="server"></asp:Literal>
</td>
</tr>
<tr>
<td>
<asp:RadioButton ID="radioVLANSelected" runat="server" AutoPostBack="true"
meta:resourcekey="radioVLANSelected" Text="Select VLANs from the list"
GroupName="VLAN"
oncheckedchanged="radioVLANSelected_CheckedChanged" />
</td>
</tr>
<tr id="VLANsListRow" runat="server">
<td style="padding-left: 30px;">
<asp:ListBox ID="listVLANs" SelectionMode="Multiple" runat="server" Rows="8"
CssClass="form-control" Width="220" style="height:100px;" ></asp:ListBox>
<br />
<asp:Localize ID="locHoldCtrl" runat="server"
meta:resourcekey="locHoldCtrl" Text="* Hold CTRL key to select multiple addresses" ></asp:Localize>
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel>
<p style="text-align: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="btnAdd" CssClass="btn btn-success" runat="server" OnClick="btnAdd_Click" ValidationGroup="AddVLAN"> <i class="fa fa-check"> </i> <asp:Localize runat="server" meta:resourcekey="btnAdd"/> </CPCC:StyleButton>
</p>