I have two projects Research and ResearchReports in a solution called Research. The Research project is fully functional and I now need to look into the reporting aspect.
I followed How to add a Report Server project to a Visual Studio Solution and have created a report:
I've been trying to find out how to enable such reports to be visible within the front end of the Research project. One suggestion was to add the created report to the Research project as an 'Existing Item'.
I created a 'Reports' view and added the report using this method:
I then edited the _Layout.cshtml to add a link to the Research project's home page:
<li class="nav-item">
<a class="nav-link text-purple" href="/Reports/OutstandingDocuments">Reports</a>
</li>
I'm getting this when I run the solution.
Please help me sort this out.



