I tried adding dependAssembly to web.config, but that didn't help.
<dependentAssembly> <assemblyIdentity name="Microsoft.ReportViewer.WebForms" publicKeyToken="89845dcd8080cc91" /> <bindingRedirect oldVersion="8.0.0.0-10.0.0.0" newVersion="11.0.0.0" /> </dependentAssembly>
However, this did not help, since the PublicKeyToken has changed in the DLL version 11.0.0.0.
Finally, I was able to solve the problem by adding qualifyAssembly node in web.config
<qualifyAssembly partialName="Microsoft.ReportViewer.WebForms" fullName="Microsoft.ReportViewer.WebForms,version=11.0.0.0,culture=neutral,publicKeyToken=89845dcd8080cc91" />
source share