0

I am a java developer so don't know anything about ASP.NET. Please explain in a layman's terms.

Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: Could not load file or assembly 'Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.

Source Error:

Line 30: <add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
Line 31: <add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
Line 32: <add assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
Line 33: <add assembly="Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
Line 34: <add assembly="Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

3
  • What part of "The system cannot find the file specified." did you not understand? Commented Mar 3, 2015 at 7:57
  • @JohnSaunders I am not able to find that file. if you can send me the link of the file that would be great Commented Mar 3, 2015 at 8:00
  • Yeah, and neither is .NET able to find that file! It's not there! Commented Mar 3, 2015 at 10:20

2 Answers 2

3

You can install the Microsoft Report Viewer 2010 Redistributable Package and change your references so they point to the ones installed by the package.

Microsoft Report Viewer 2010 Redistributable Package


Search the missing dll in your system

Microsoft.ReportViewer.WebForms.dll

You find them in "C:\Windows\assembly\GAC_MSIL" and put them in the references of your project.

Sign up to request clarification or add additional context in comments.

Comments

0

You should add the missing assembly (DLL) references into your project "References" section and then perform the build again to check if is corrected.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.