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.
Create an ASP.NET Web Application (.NET Framework) using Visual Studio templates. For more information, see Configuring MVC application using Visual Studio template.
licenses.licx |
Copy Code
|
---|---|
C1.Web.Mvc.LicenseDetector, C1.Web.Mvc C1.Web.Mvc.Viewer.LicenseDetector, C1.Web.Mvc.FlexViewers |
Complete the following steps to add the ASP.NET MVC Edition references and FlexViewer references to your project.
web.config
file to open it.<system.web.webPages.razor></system.web.webPages.razor>
tags.
HTML |
Copy Code
|
---|---|
<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:
_Layout.cshtml
to open it.<head></head>
tags.
_Layout.cshtml |
Copy Code
|
---|---|
@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.
Index.cshtml |
Copy Code
|
---|---|
@(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.