Reporting.dll
1.0.20
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Reporting.dll --version 1.0.20
NuGet\Install-Package Reporting.dll -Version 1.0.20
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Reporting.dll" Version="1.0.20" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Reporting.dll --version 1.0.20
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Reporting.dll, 1.0.20"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Reporting.dll as a Cake Addin #addin nuget:?package=Reporting.dll&version=1.0.20 // Install Reporting.dll as a Cake Tool #tool nuget:?package=Reporting.dll&version=1.0.20
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Reporting
Drop in reporting tool with sql query builder
Typical use:
<asp:Button ID="btnToggleEditing" runat="server" OnClick="btnToggleEditing_Click" Text="Toggle report editing" />
<br />
<%@ Register assembly="Reporting" namespace="Reporting" tagprefix="DTI" %>
<DTI:ReportSelector ID="ReportSelector1" runat="server"></DTI:ReportSelector>
Code behind:
protected void btnToggleEditing_Click(object sender, EventArgs e)
{
Reporting.Report.isGlobalAdmin = !Reporting.Report.isGlobalAdmin;
Response.Redirect(Request.Url.AbsoluteUri);
}
Web.config:
<add name="ConnectionString" connectionString="Data Source=SQLServerName;Initial Catalog=WhereTheDataIs;Integrated Security=True" providerName="System.Data.SqlClient"/>
Note: THIS WILL ADD TABLES TO THE DATABASE. If you want to use SQLite to store the reports set the report connection like: In Global.asax.cs
protected void Session_Start(object sender, EventArgs e)
{
Reporting.Report.ReportDataConnectionShared = BaseClasses.DataBase.createHelperFromConnectionName("CONNECTION NAME").defaultConnection;
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
- DTIControls.dll (>= 1.0.20)
- DTIGrid.dll (>= 1.0.20)
- WebActivatorEx (>= 2.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.24 | 950 | 4/2/2019 |
1.0.23 | 573 | 4/2/2019 |
1.0.22 | 580 | 3/7/2019 |
1.0.21 | 568 | 2/21/2019 |
1.0.20 | 811 | 10/16/2018 |
1.0.19 | 751 | 10/16/2018 |
1.0.18 | 698 | 10/16/2018 |
1.0.17 | 964 | 5/23/2018 |
1.0.16 | 903 | 5/23/2018 |
1.0.15 | 949 | 3/15/2018 |
1.0.14 | 958 | 3/14/2018 |
1.0.13 | 996 | 2/8/2018 |
1.0.12 | 1,050 | 2/2/2018 |
1.0.10 | 1,070 | 2/1/2018 |
1.0.7 | 991 | 1/30/2018 |
1.0.5 | 952 | 12/19/2017 |
1.0.1 | 955 | 12/19/2017 |
Adding webactivator to add startup script