1, the application pool adopts Classic mode, framework4.0. There may be a permissions problem, workaround: The identity of the advanced setting is set to LocalSystem.
General MVC uses integrated mode, why should I choose Classic mode? Because you want to identify the httpmodules configuration.
2, open the handler mapping settings for IIS, "Add script map"
Request Path: *
Executable file: C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll
3, you may also encounter situations, processing routing access, other pages or JS can not access the online solution:
Set in Web.config:
<system.web>
<!--Note: If there is an error, remove this segment buildproviders configuration-->
<buildProviders>
<add extension= "*" type= "System.Web.Compilation.PageBuildProvider"/>
</buildProviders>
< httphandlers>
<add verb= "*" path= "*" type= "System.Web.StaticFileHandler"/>