| 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="SqlBackupDatabase.ascx.cs" Inherits="SolidCP.Portal.SqlBackupDatabase" %>
<%@ Register Src="UserControls/FileLookup.ascx" TagName="FileLookup" TagPrefix="uc1" %>
<div class="panel-body form-horizontal">
<table cellSpacing="0" cellPadding="5" width="100%">
<tr>
<td class="Huge" colspan="2"><asp:Literal id="litDatabaseName" runat="server"></asp:Literal></td>
</tr>
<tr>
<td><br/>
</td>
</tr>
<tr>
<td class="SubHead" vAlign="top"><asp:Label ID="lblBackupFileName" runat="server" meta:resourcekey="lblBackupFileName" Text="Backup File Name:"></asp:Label></td>
<td class="normal">
<asp:TextBox ID="txtBackupName" runat="server" CssClass="form-control" Width="200"></asp:TextBox><asp:RequiredFieldValidator
ID="validatorUserName" runat="server" ControlToValidate="txtBackupName" CssClass="NormalBold"
Display="Dynamic" ErrorMessage="*"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td class="SubHead" vAlign="top"><asp:Label ID="lblBackupOptions" runat="server" meta:resourcekey="lblBackupOptions" Text="Backup Options:"></asp:Label></td>
<td class="normal"><asp:checkbox id="chkZipBackup" runat="server" meta:resourcekey="chkZipBackup" Checked="True" Text="ZIP Backup" AutoPostBack="True" OnCheckedChanged="chkZipBackup_CheckedChanged"></asp:checkbox><br/>
<br/>
</td>
</tr>
<tr>
<td class="SubHead" vAlign="top"><asp:Label ID="lblBackupDestination" runat="server" meta:resourcekey="lblBackupDestination" Text="Backup Destination:"></asp:Label></td>
<td class="normal">
<asp:radiobutton id="rbDownload" runat="server" meta:resourcekey="rbDownload" Checked="True" Text="Download via HTTP" GroupName="action"
AutoPostBack="True" OnCheckedChanged="rbDownload_CheckedChanged"></asp:radiobutton><br/>
<asp:radiobutton id="rbCopy" runat="server" meta:resourcekey="rbCopy" Text="Copy to Folder" GroupName="action"
AutoPostBack="True" OnCheckedChanged="rbDownload_CheckedChanged"></asp:radiobutton><br/>
<uc1:FileLookup ID="fileLookup" runat="server" Width="300" />
</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="btnBackup" CssClass="btn btn-success" runat="server" OnClick="btnBackup_Click" useSubmitBehavior="false"> <i class="fa fa-check"> </i> <asp:Localize runat="server" meta:resourcekey="btnBackup"/> </CPCC:StyleButton>
</div>