标签:style http color io ar sp on c ad
运行页面,会报
HTTP 错误 500.23 - Internal Server Error
检测到在集成的托管管道模式下不适用的 ASP.NET 设置。
最可能的原因:
•此应用程序在 system.web/httpHandlers 节中定义配置。
<system.web>
<compilation debug="true" targetFramework="4.0" />
<httpRuntime targetFramework="4.0" />
<!--<httpModules> <-- 在发布项目的时候设置为经典模式||或者添加如下配制 >
<add name="MyModule" type="MyModule,App_Code"/>
<add name="MyHandler" verb="*" path="*.aspx" type="MyHandler"/>
</httpModules>-->
</system.web>
<system.webServer>
<modules>
<add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<add name="MyModule" type="MyModule,App_Code"/>
</modules>
<handlers>
<add name="MyHandler" verb="*" path="*.aspx" type="MyHandler"/>
</handlers>
</system.webServer>
VS2013 web.config <httpHandlers> 标签
标签:style http color io ar sp on c ad
原文地址:http://www.cnblogs.com/-lzb/p/3995613.html