-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathViewReports.ascx
17 lines (17 loc) · 1.25 KB
/
ViewReports.ascx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<%@ Control Language="C#" Inherits="DotNetNuke.Modules.Reports.ViewReports" AutoEventWireup="true" Explicit="True" CodeBehind="ViewReports.ascx.cs" %>
<asp:Panel ID="InfoPane" runat="server" Visible="false" EnableViewState="false">
<h1>
<asp:Literal ID="TitleLiteral" runat="server" Text="Title goes here" EnableViewState="false"/>
</h1>
<p class="NormalBold">
<asp:Literal ID="DescriptionLiteral" runat="server" Text="Description goes here" EnableViewState="false"/>
</p>
</asp:Panel>
<asp:PlaceHolder ID="ControlsPane" runat="server" Visible="false" EnableViewState="false">
<p>
<asp:LinkButton ID="RunReportButton" runat="server" ResourceKey="RunReportButton" CssClass="dnnPrimaryAction" EnableViewState="false" OnClick="RunReportButton_Click"/>
<asp:LinkButton ID="ClearReportButton" runat="server" ResourceKey="ClearReportButton" CssClass="dnnSecondaryAction" Visible="false" EnableViewState="false" OnClick="ClearReportButton_Click"/>
<asp:LinkButton ID="ExportExcelButton" runat="server" ResourceKey="ExportExcelButton" CssClass="dnnSecondaryAction" Visible="true" EnableViewState="false" OnClick="ExportExcelButton_Click" />
</p>
</asp:PlaceHolder>
<asp:PlaceHolder ID="VisualizerSection" runat="server"/>