asp core
Asp.Net Core 2.2 - HTTP Error 500.0 - ANCM In-Process Handler Load Failure
A
Desh-Duniya Team
Author
Asp.Net Core 2.2 - HTTP Error 500.0 - ANCM In-Process Handler Load Failure
Another thing that worked for me but isn't necessarily right is to actually change the handler in the web.config from
<handlers> <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule**V2**" resourceType="Unspecified" /> </handlers>
to
<handlers> <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" /> </handlers>