[]
FlexViewer is available as MVC Core 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 Core MVC 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 Core Web Application using Visual Studio templates. For more information, see Configuring MVC application using Visual Studio template.
type=note
Note: Once you have added the resources to ASP.NET Core application, you can license the resources and your application using the MESCIUS License Manager. For more information, see Licensing topic.
From the Solution Explorer, expand the folder Views and double click the _ViewImports.cshtml file to open it.
Add the following references to work with FlexViewer control in your ASP.NET Core application.
@addTagHelper *, C1.AspNetCore.Mvc
@addTagHelper *, C1.AspNetCore.Mvc.FlexViewer
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.
<c1-styles />
<c1-scripts>
<c1-flex-viewer-scripts />
</c1-scripts>
For more information on how to register resources for FlexViewer, refer to Registering Resources.
Complete the following steps to add controller to your application:
Controller)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.
<c1-report-viewer file-path="ReportsRoot/FlexCommonTasks/FlexCommonTasks.flxr"
report-name="Simple List" service-url="https://developer.mescius.com/componentone/demos/aspnet/5/c1webapi/latest/api/report">
</c1-report-viewer>
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.