It is not absolutely clear in this post what to do...
"
Alright, it looks like something changed somewhere in 4.8X so now what you have to do is add two lines to your web.cofig instead of one line for the reportviewer control.
First in the < system.web > section
< httpHandlers >
< add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" />
and then in the section
< httpHandlers >
< add name="ReportViewerHandler" path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" preCondition="integratedMode,runtimeVersionv2.0" /> < /httpHandlers >
Notice that the system.webServer section is new and the handler is slightly different."
In the system.web/httphandlers add the below???
< add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" />
Then in the system.webserver/handlers add the below???
< add name="ReportViewerHandler" path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" preCondition="integratedMode,runtimeVersionv2.0" />
there is not a 'httphandlers' in the system.webServer...that i can find.
thank you for the quick reply.
Chas |