Getting "The WebResource.axd handler must be registered in the configuration to process this request
Posted
by rwponu
on Stack Overflow
See other posts from Stack Overflow
or by rwponu
Published on 2010-04-16T16:16:45Z
Indexed on
2010/04/16
16:23 UTC
Read the original article
Hit count: 830
I'm getting this error while running my ASP.NET app on IIS7. I've tried doing what it says to do but it doesn't help.
The WebResource.axd handler must be registered in the configuration to process this request.
> <!-- Web.Config Configuration File -->
>
> <configuration>
> <system.web>
> <httpHandlers>
> <add path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader" validate="True" />
> </httpHandlers>
> </system.web>
> </configuration>
I'm using a little bit of AJAX which is what I think is causing the issue. Has anyone encountered this before?
© Stack Overflow or respective owner