一个快速的解决方案是更新您的web.config并添加以下部分
<handlers> <remove name="WebServiceHandlerFactory-Integrated"/> <remove name="scriptHandlerFactory"/> <remove name="scriptHandlerFactoryAppServices"/> <remove name="scriptResource"/> <add name="scriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.script.Services.scriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="scriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.script.Services.scriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> <add name="scriptResource" preCondition="integratedMode" verb="GET,HEAD" path="scriptResource.axd" type="System.Web.Handlers.scriptResourceHandler, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></handlers>



