alanjuden / MvcReportViewer

Custom Report Viewer control to replace MS Report Viewer on MVC projects (also works on .NET Core as a Report Viewer).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

is this for SSRS or local report?

oishiimendesu opened this issue · comments

It's supposed to connect to reporting services server.

Why did you use?:
model.ReportPath = "/Folder/Report File Name";

This is only for SSRS, it does not support local reports.

I have written a blog post about setting this up here: https://alanjuden.com/2016/11/10/mvc-net-core-report-viewer/

The model.ReportPath you're referring to is the path from the report server's perspective. There is another setting on your ReportController that allows you to configure the path to the report server: ReportServerUrl (which is mentioned in the blog post I referenced above).

I hope this helps.

Alan