Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Chart > Chart http handler is not registered
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered Chart http handler is not registered

Feed from this thread
  • Surya avatar

    Posted on Apr 19, 2011 (permalink)

    Hi,

    I have been trying to use RadChart but the handler just fails to register. Here is the error message when the chart tried to display on the page.

    The Chart http handler is not registered. Please, manually add the following line to your Web.config httpHandlers section:
    <add path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Version=2010.3.1317.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false" />

    I have modified my web.config file according to the instruction specified at http://www.telerik.com/help/aspnet-ajax/registering_the_httphandlers_on_windows_vista_iis_7_integrated_mode.html.

    Here is my current web.config file.

    <?xml version="1.0"?>
    <!--
      For more information on how to configure your ASP.NET application, please visit
      -->
    <configuration>
        <system.web>
            <compilation debug="true" targetFramework="4.0"/>
        </system.web>
      <system.webServer>
        <handlers>
          <add name="ChartImage.axd_*" path="ChartImage.axd" verb="*"
           type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
           preCondition="integratedMode" />
        </handlers>
      </system.webServer>
    </configuration>

    Any suggestion?

  • Vladimir Milev Vladimir Milev admin's avatar

    Posted on Apr 25, 2011 (permalink)

    Hi Surya,

    The easiest solution would be to clean all chart related entries from your web.config file and use the control smart tag to re-create the chart handler registration.

    Regards,
    Vladimir Milev
    the Telerik team

    Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get now >>

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Chart > Chart http handler is not registered