The WebResource.axd handler must be registered in the configuration to process this request
There are 2 steps to solve this issue
1.Change the Application pool to "Classic"
2.Add the following line to the web config
<add name="WebResource" path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader"/>
It looks like
<configuration>
<system.webServer>
<handlers>
PASTE HERE
</handlers>
</system.webServer>
<configuration>
Comments