I am working on an Asp.net MVC project in which I am also incorporating web forms for the purpose of showing a report. I created a new Report.aspx file and also installed the 2012 version of Microsoft Report Viewer control to use on my web form. After dragging the control out onto my web form, I get this error:
Error Creating Control - ReportViewer2Could not load file or assembly 'Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
I have this in my Web.config also.
<assemblies>
<add assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
<add assembly="Microsoft.ReportViewer.Common, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
</assemblies>