I got an ASP.NET app from someone who used to run it on his IIS on Windows XP (I don't know which IIS version he has).
When I tried to deploy it on my IIS (v7.5 - Windows 7) - I can't open its default.aspx file and I get the following error page:
HTTP Error 500.19 - Internal Server Error
Error Code 0x80070021
Config Error This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false". Config File \?\C:\inetpub\wwwroot\web.config
Config Source:
82:</modules>
83:<handlers> <-- This is the problematic line
84: <remove name="ScriptHandlerFactory"/>
Any idea what I need to 'fix' in the web.config? Is there any guide to porting apps to iis7.5?