The following tutorial shows how to use the Text Control ReportingCloud .NET Wrapper to create your first ReportingCloud application.

  1. Register and create a free trial account with ReportingCloud:

    Register

  2. Start Visual Studio 2015 and create a new ASP.NET Web Application. Select Empty as the Template and check MVC to add the folders and core references:

    Getting started with Text Control ReportingCloud and the .NET Wrapper
  3. Open the Package Manager Console from the NuGet Package Manager menu item of the Tools main menu.

    Type in the following command:

    PM> Install-Package TXTextControl.ReportingCloud

  4. In the Solution Explorer, right-click the Controllers folder and choose Add -> Controller from the opened context menu. In the opened dialog box, choose MVC 5 Controller - Empty and confirm with Add. Name the newly created controller HomeController and add it by clicking Add.

  5. Add the following code to your controller and replace username and password with your ReportingCloud credentials:

    using System.Collections.Generic;
    using System.Web.Mvc;
    using TXTextControl.ReportingCloud;
    namespace ReportingCloudTutorial.Controllers
    {
    public class HomeController : Controller
    {
    // GET: Home
    public ActionResult Index()
    {
    ReportingCloud rc = new ReportingCloud(
    "username",
    "password",
    new System.Uri("https://api.reporting.cloud"));
    List<Template> templates = rc.ListTemplates();
    return View(templates);
    }
    }
    }
    view raw HomeController.cs hosted with ❤ by GitHub

    The ListTemplates method returns a list of all templates in the template storage which is returned to the view.

  6. In the Solution Explorer, right-click the newly created folder Views -> Home and choose Add -> View from the context menu. Name the view Index and confirm with Add.

  7. Add the following code to the newly created view:

    @model List<TXTextControl.ReportingCloud.Template>
    @{
    ViewBag.Title = "Index";
    }
    <h2>All Templates</h2>
    <table>
    <tr>
    <th>Filename</th>
    <th>Modified</th>
    </tr>
    @foreach (TXTextControl.ReportingCloud.Template template in Model)
    {
    <tr>
    <td>@template.TemplateName</td>
    <td>@template.Modified</td>
    </tr>
    }
    </table>
    view raw Index.cshtml hosted with ❤ by GitHub
  8. Compile and start the application. The view lists all your templates from your template storage:

    Getting started with Text Control ReportingCloud and the .NET Wrapper

More samples and unit tests can be found on GitHub:

ReportingCloud .NET Wrapper