Click here to Skip to main content
15,889,527 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
HI WHEN IAM DEBUGGING MY APPLICATION IAM GETTING THIS ERROR

No http handler was found for request type 'GET'
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Posted

AA405 wrote:
HI WHEN IAM DEBUGGING MY APPLICATION IAM GETTING THIS ERROR

You don't need to use CAPS ... it looks like you are shouting, avoid it.


AA405 wrote:
No http handler was found for request type 'GET'

Did you tried to troubleshoot it? Generally it happens becuase of a missing handler in your Web.Config file.
Have a look at these links:
http://stackoverflow.com/questions/599382/no-http-handler-was-found-for-request-type-post[^]
http://forums.asp.net/p/1167907/1947770.aspx[^]
Either, you need to add the handler in your config file or you need to configure your IIS properly.
 
Share this answer
 
:-D :-D :-D :-D :-D :-D :-D :-D :-D :-D :-D :laugh: ;) ;P :( :( :( <a href="">67u7</a>
 
Share this answer
 
Comments
Member 13252404 9-Jul-17 2:14am    
From
<add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;" />

To
<add key="ChartImageHandler" value="storage=file;timeout=20;" />


and add the following

<httphandlers>
<add path="ChartImg.axd" verb="GET,HEAD,POST" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler,
System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral,PublicKeyToken=31bf3856ad364e35"
validate="false"/>




<handlers>
<remove name="ChartImageHandler" />
<add name="ChartImageHandler" preCondition="integratedMode" verb="GET,HEAD,POST"
path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler,
System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900