HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/PHerau/toptennisteam.be/wwwroot/admin/Dashboard/Modules/Database.ascx
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="Database.ascx.vb" Inherits="DotNetNuke.Modules.Dashboard.Controls.Database" %>
<%@ Register TagPrefix="dnn" Assembly="DotNetNuke" Namespace="DotNetNuke.UI.WebControls"%>
<%@ Register TagPrefix="dnn" TagName="Label" Src="~/controls/LabelControl.ascx" %>

<dnn:Label id="plDbInfo" runat="Server" CssClass="Head" ControlName="ctlDbInfo" />
<dnn:propertyeditorcontrol id="ctlDbInfo" runat="Server"
    autogenerate = "false"
    enableclientvalidation = "true"
    sortmode="SortOrderAttribute" 
    labelstyle-cssclass="SubHead" 
    helpstyle-cssclass="Help" 
    editcontrolstyle-cssclass="NormalTextBox" 
    labelwidth="200px" 
    editcontrolwidth="450px" 
    editmode="View" 
    errorstyle-cssclass="NormalRed">
    <Fields>
        <dnn:FieldEditorControl ID="fldProductVersion" runat="server" DataField="ProductVersion" />
        <dnn:FieldEditorControl ID="fldServicePack" runat="server" DataField="ServicePack" />
        <dnn:FieldEditorControl ID="fldProductEdition" runat="server" DataField="ProductEdition" />
        <dnn:FieldEditorControl ID="fldSoftwarePlatform" runat="server" DataField="SoftwarePlatform" />
    </Fields>
</dnn:propertyeditorcontrol>    
<br />
<dnn:Label id="plBackups" runat="Server" CssClass="Head" ControlName="grdBackups" />
<asp:GridView ID="grdBackups" runat="server" GridLines="None" 
    AutoGenerateColumns="false"  EnableViewState="False">
    <Columns>
        <asp:BoundField DataField="name" HeaderText="Backup Name" />
        <asp:BoundField DataField="StartDate" DataFormatString="{0:d}" HeaderText="Started" />
        <asp:BoundField DataField="FinishDate" DataFormatString="{0:d}" HeaderText="Finished" />
        <asp:BoundField DataField="Size" DataFormatString="{0:n}" HeaderText="Size (Kb)" />
        <asp:BoundField DataField="BackupType" HeaderText="Backup Type" />
    </Columns>
    <EmptyDataTemplate>
        <%= NoBackups %>
    </EmptyDataTemplate>
</asp:GridView>
<br />
<dnn:Label id="plFiles" runat="Server" CssClass="Head" ControlName="grdFiles" />
<asp:GridView ID="grdFiles" runat="server" GridLines="None" 
    AutoGenerateColumns="False" EnableViewState="False">
    <Columns>
        <asp:BoundField DataField="Name" HeaderText="Name" />
        <asp:BoundField DataField="Megabytes" DataFormatString="{0:n} Mb" HeaderText="Size" />
        <asp:BoundField DataField="FileType" HeaderText="File Type" />
        <asp:TemplateField HeaderText="File Name">
            <ItemTemplate>
                <asp:Label ID="Label1" runat="server" Text='<%# Bind("ShortFileName") %>'></asp:Label>
            </ItemTemplate>
        </asp:TemplateField>
    </Columns>
    <EmptyDataTemplate>
        <%= NoBackups %>
    </EmptyDataTemplate>
</asp:GridView>