码迷,mamicode.com
首页 > Web开发 > 详细

VS2013 web.config <httpHandlers> 标签

时间:2014-09-26 23:13:58      阅读:381      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!