asp.net 4路由不工作在iis 7

前端之家收集整理的这篇文章主要介绍了asp.net 4路由不工作在iis 7前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我们的新产品中使用asp.net 4路由,它在开发环境(Visual studio webserver)中工作正常.但是当我将其移动到远程iis进行测试时,它不起作用.我所有的都是404错误页面.我尝试将以下内容添加到web.config并仍然收到错误.
<system.webServer>
     <modules runAllManagedModulesForAllRequests="true">    
     <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule,System.Web,Version=4.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a" /> 
     </modules> 
 <validation validateIntegratedModeConfiguration="false" />
</system.webServer>

任何想法如何排序这个问题?

解决方法

我得到这个解决方案…添加以下代码在ur web.config ..
并且不要忘记在你的模块中添加runAllManagedModulesForAllRequests =“true”
<system.webServer> 
        <modules runAllManagedModulesForAllRequests="true"> 
          <remove name="UrlRoutingModule"/> 
          <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule,PublicKeyToken=b03f5f7f11d50a3a" /> 
        </modules> 
        <handlers> 
          <add 
            name="UrlRoutingHandler" 
            preCondition="integratedMode" 
            verb="*" path="UrlRouting.axd" 
            type="System.Web.HttpForbiddenHandler,Version=2.0.0.0,PublicKeyToken=b03f5f7f11d50a3a"/> 
        </handlers> 
      </system.webServer>
原文链接:https://www.f2er.com/aspnet/250925.html

猜你在找的asp.Net相关文章