I tried to install MSCharts on my Win2008 server. It installed without problem. Then I wrote in config.
But when I'm trying to open page with charts it returned following error. No http handler was found for request type 'GET'
Do you have any thougths about the problem?
Don't know anything about MSCharts, but I'd say try changing the AppPool for the app to 'Classic .NET AppPool'.
Alternatively, you may need to modify your web.config to add the handler in there. See Rick Strahl's post here.
Solution was in web config. IIS7 required to write handlers inside system.webserver but not in the system.web. So I just move handler and add name attribute as it became required.
This is what you need for ASP.NET 4.0 / IIS 7.5 on Windows 7:
Your web.config must contain the following:
You also need this at the top of your aspx page:
Hope this helps
Like Danil said, IIS7 requires that you put the handlers in
Add the two lines below after the last add-in handles