| 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 : C:/SolidCP/Portal/DesktopModules/SolidCP/ApplicationInstallerControls/ |
Upload File : |
<%@ Control Language="c#" AutoEventWireup="true" %>
<%@ Implements interface="SolidCP.Portal.IWebInstallerSettings" %>
<%@ Import namespace="SolidCP.EnterpriseServer" %>
<%@ Import Namespace="System.Text" %>
<script language="C#" runat="server">
void Page_Load()
{
}
public void GetSettings(InstallationInfo inst)
{
inst["scp.portalname"] = txtPortalName.Text;
inst["scp.enterpriseserver"] = txtEsURL.Text;
}
</script>
<table cellPadding="2" width="100%">
<tr>
<td align="left" width=200 nowrap class=SubHead>Portal Name:</TD>
<td align="left" width=100% class=Normal>
<asp:textbox id="txtPortalName" runat="server" CssClass="form-control" Width="200px">SolidCP</asp:textbox>
</td>
</tr>
<tr>
<td align="left" width=200 nowrap class=SubHead>Enterprise Server URL:</TD>
<td align="left" width=100% class=Normal>
<asp:textbox id="txtEsURL" runat="server" CssClass="form-control" Width="200px">http://127.0.0.1:9002</asp:textbox>
</td>
</tr>
</table>