ASP.NET MVC Controls > Controls > FlexViewer > ReportViewer > Using C1 MVC ReportViewer Template > View SSRS reports |
To view a report that is stored on a SSRS report server, you need to configure your MVC application. Complete the following steps to add the view page to your application. For more information about using Report Viewer, see Using C1 ReportViewer Template.
Index.cshtml |
Copy Code
|
---|---|
<head>
<title>C1 MVC ReportViewer</title>
@Html.C1().Styles()
@Html.C1().Scripts().FlexViewer()
</head>
<body>
@(Html.C1().ReportViewer().FilePath(@"SSRS/AdventureWorks/Company Sales"))
</body>
|