[]
FlexViewer is available as MVC control that can be used in an MVC applications to view reports using C1 Web API Report Services. Complete the following steps to use the control to view a report.
type=note
Note: The C1 ASP.NET MVC 5 Web Application template for ASP.NET MVC Edition automatically registers the required resources, and adds the relevant references and packages to your application. Therefore, you only need to follow Steps 6 to 8 above if your application is created using ComponentOne template.
Create an ASP.NET Web Application (.NET Framework) using Visual Studio templates. For more information, see Configuring MVC application using Visual Studio template.
In the Solution Explorer, right click the project and select Add | New Item. The New Item dialog appears.
In the New Item dialog, select C# | General and select Text File in the right pane.
Name the text file as licenses.licx.2. In the licenses.licx file, add the following:
C1.Web.Mvc.LicenseDetector, C1.Web.Mvc
C1.Web.Mvc.Viewer.LicenseDetector, C1.Web.Mvc.FlexViewers
For more information on how to add license to your application, refer to Licensing.
Complete the following steps to add the ASP.NET MVC Edition references and FlexViewer references to your project.
From the Solution Explorer, expand the folder Views and double click the web.config
file to open it.
Add the following markups in <namespaces></namespaces> tags, within the <system.web.webPages.razor></system.web.webPages.razor>
tags.
<add namespace="C1.Web.Mvc" />
<add namespace="C1.Web.Mvc.Viewer" />
<add namespace="C1.Web.Mvc.Viewer.Fluent" />
Complete the following steps to register the required resources for using ASP.NET MVC FlexViewer control:
From the Solution Explorer, open the folders Views | Shared.
Double click _Layout.cshtml
to open it.
Add the following code between the <head></head>
tags.
@Html.C1().Styles()
@Html.C1().Scripts().FlexViewer()
For more information on how to register resources for FlexViewer, refer to Registering Resources.
Complete the following steps to add controller to your application:
A new controller is added to the application within the folder Controllers.
Complete the following steps to add corresponding view for the controller.
A view is added for the controller. In the code below, we have specified the Service URL, FilePath, and Report Name.
@(Html.C1().ReportViewer()
.ServiceUrl(@"https://demos.componentone.com/ASPNET/c1webapi/4.0.20171.91/api/report")
.FilePath(@"ReportsRoot/FlexCommonTasks/FlexCommonTasks.flxr")
.ReportName(@"Simple List"))
A view is added for the controller.
type=note
Note: Append the folder name and view name to the generated URL (for example: http://localhost:1234/Report/Index) in the address bar of the browser to view the report.
type=note
Note: To know further, explore the detailed demo for using FlexViewer.