Hello:
I'm new using Telerik controls, I find it very useful these controls, in addition to be easy to implement.
I had no problems with the RAD Controls, but when I try the reporting everything worked well:
making the report( I see both Preview and HTML Preview), connect to the database, creating the reportviewer in the aspx page.
But when I try to run the web site, all other pages worked fine, but the report does not work, I get the following message:
The http handler needed by the Report Viewer has not been registered in the application's web.config file. Add <add verb="*" path="Telerik.ReportViewer.axd" type = "Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=1.5.0.0, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" /> to the system.web/httpHandlers section of the configuration file.
But Im ussing Netframework 2.0 for the application, so I put the handler in Handler Mapping In the application's config file, but nothing happened.
<system.webServer>
<handlers>
<add name="TelerikReport" path="Telerik.ReportViewer.axd" verb="*" type="Telerik.ReportViewer.WebForms.HttpHandler" resourceType="Unspecified" />
</handlers>
</system.webServer>
I search the entire Reporting Forum, with no luck. I put The dll files in the bin directory. Any advice? I may be missing something?
Thanx for your time.
P.D.
Im Using VS2005 in Vista Utimate.