| 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="WebApplicationGalleryParams.ascx.cs"
Inherits="SolidCP.Portal.WebApplicationGalleryParams" %>
<%@ Register Src="UserControls/PasswordControl.ascx" TagName="PasswordControl" TagPrefix="uc3" %>
<%@ Register Src="UserControls/UsernameControl.ascx" TagName="UsernameControl" TagPrefix="uc2" %>
<%@ Register TagPrefix="scp" TagName="CollapsiblePanel" Src="UserControls/CollapsiblePanel.ascx" %>
<%@ Register Src="installerapplicationheader.ascx" TagName="ApplicationHeader" TagPrefix="dnc" %>
<%@ Register Src="UserControls/EnableAsyncTasksSupport.ascx" TagName="EnableAsyncTasksSupport" TagPrefix="scp" %>
<%@ Register Src="UserControls/SimpleMessageBox.ascx" TagName="SimpleMessageBox" TagPrefix="uc1" %>
<%@ Register src="WebApplicationGalleryHeader.ascx" tagname="WebApplicationGalleryHeader" tagprefix="uc4" %>
<%@ Register src="WebApplicationGalleryParamControl.ascx" tagname="Parameter" tagprefix="wag" %>
<scp:EnableAsyncTasksSupport id="asyncTasks" runat="server" />
<div class="panel-body form-horizontal">
<uc1:SimpleMessageBox ID="messageBox" runat="server" />
<uc4:WebApplicationGalleryHeader ID="appHeader" runat="server" />
<div id="urlPanel" runat="server" style="padding: 20px;text-align:center;" visible="false">
<asp:HyperLink runat="server" ID="hlApplication" meta:resourcekey="hlApplication" CssClass="MediumBold" Target="_blank" />
</div>
<div id="tempUrlPanel" runat="server" style="padding: 10px;" visible="false">
<asp:Literal ID="tempUrl" runat="server"></asp:Literal>
</div>
<scp:CollapsiblePanel id="secAppSettings" runat="server" TargetControlID="SettingsPanel"
meta:resourcekey="secAppSettings" Text="Application Information">
</scp:CollapsiblePanel>
<asp:Panel ID="SettingsPanel" runat="server" Height="0" Style="overflow: hidden;">
<fieldset>
<legend>
<asp:Localize ID="lblInstallOnWebSite" runat="server" meta:resourcekey="lblInstallOnWebSite"></asp:Localize>
</legend>
<div class="FormFieldDescription">
<asp:Localize ID="locWebSiteDescription" meta:resourcekey="locWebSiteDescription" runat="server"></asp:Localize>
</div>
<div class="FormField">
<asp:DropDownList ID="ddlWebSite" runat="server" DataValueField="Id" DataTextField="Name" Width="600px"
CssClass="form-control">
</asp:DropDownList>
<div>
<asp:RequiredFieldValidator ID="valRequireWebSite" runat="server" ValidationGroup="wag" SetFocusOnError="true" meta:resourcekey="valRequireWebSite"
ControlToValidate="ddlWebSite" Display="Dynamic" Text="*">*</asp:RequiredFieldValidator>
</div>
</div>
</fieldset>
<fieldset>
<legend>
<asp:Localize ID="lblInstallOnDirectory" runat="server" meta:resourcekey="lblInstallOnDirectory"></asp:Localize>
</legend>
<div class="FormField">
<uc2:UsernameControl id="directoryName" runat="server" RequiredField="false" width="600px"></uc2:UsernameControl>
</div>
<div class="FormFieldDescription">
<asp:Localize ID="lblLeaveThisFieldBlank" runat="server" meta:resourcekey="lblLeaveThisFieldBlank"></asp:Localize>
</div>
</fieldset>
<div id="divDatabase" runat="server">
<%-- database engine --%>
<fieldset id="databaseEngineBlock" runat="server">
<legend>
<asp:Localize ID="locDatabaseType" meta:resourcekey="locDatabaseType" runat="server"></asp:Localize>
</legend>
<div class="FormFieldDescription">
<asp:Localize ID="locDatabaseTypeDescr" meta:resourcekey="locDatabaseTypeDescr" runat="server"></asp:Localize>
</div>
<div class="FormField">
<asp:DropDownList ID="databaseEngines" runat="server" AutoPostBack="true" Width="600px"
OnSelectedIndexChanged="databaseEngines_SelectedIndexChanged">
</asp:DropDownList>
</div>
</fieldset>
<%-- existing or new database --%>
<fieldset id="databaseModeBlock" runat="server">
<legend>
<asp:Localize ID="locNewDatabase" meta:resourcekey="locNewDatabase" runat="server"></asp:Localize>
</legend>
<div class="FormFieldDescription">
<asp:Localize ID="locNewDatabaseDescr" meta:resourcekey="locNewDatabaseDescr" runat="server"></asp:Localize>
</div>
<div class="FormField">
<asp:DropDownList ID="databaseMode" runat="server"
resourcekey="rblDatabase" AutoPostBack="True" Width="600px"
onselectedindexchanged="databaseMode_SelectedIndexChanged">
<asp:ListItem Value="new" Selected="True">NewDatabase</asp:ListItem>
<asp:ListItem Value="existing">ExistingDatabase</asp:ListItem>
</asp:DropDownList>
</div>
</fieldset>
</div>
<%-- application parameters --%>
<asp:Repeater ID="repParams" runat="server"
onitemdatabound="repParams_ItemDataBound">
<ItemTemplate>
<wag:Parameter id="param" runat="server"></wag:Parameter>
</ItemTemplate>
</asp:Repeater>
</asp:Panel>
</div>
<asp:Panel runat="server" ID="InstallLogPanel" Visible="False" CssClass="panel-body form-horizontal">
<script type="text/javascript">
function showLogPre() {
document.getElementById('<%=InstallLog.ClientID%>').style.display = 'block';
return false;
}
</script>
<CPCC:StyleButton CssClass="btn btn-success" runat="server" OnClientClick="return showLogPre();"> <i class="fa fa-check"> </i> <asp:Localize runat="server" meta:resourcekey="btnShowInstallLogText"/> </CPCC:StyleButton>
<pre runat="server" ID="InstallLog" style="white-space: pre-wrap; display: none;">
Logs not found
</pre>
</asp:Panel>
<div class="panel-footer text-right">
<asp:Button runat="server" ID="btnOK" Visible="false" meta:resourcekey="btnOK" CssClass="btn btn-success" OnClick="btnOK_Click" />
<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="btnInstall" CssClass="btn btn-success" runat="server" OnClick="btnInstall_Click" ValidationGroup="wag" OnClientClick="ShowProgressDialog('Installing application...');"> <i class="fa fa-plus"> </i> <asp:Localize runat="server" meta:resourcekey="btnInstallText"/> </CPCC:StyleButton>
</div>