asp.net – 为什么IIS Express使用而不是?

前端之家收集整理的这篇文章主要介绍了asp.net – 为什么IIS Express使用而不是?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用Cassini但切换到IIS Express.我最初的想法是我可以删除所有< system.web>除了以下内容
<authentication mode="Forms">
  <forms loginUrl="/" />
</authentication>

我之前的customErrors设置如下:@H_404_5@

<customErrors mode="On" defaultRedirect="/ServerError">
  <error statusCode="404" redirect="/NotFound" />
</customErrors>

我切换到IISExpress时删除了这个customErrors元素.现在404不再重定向到我漂亮的“NotFound”页面了.@H_404_5@

用于我的网站的AppPool是Clr4IntegratedAppPool,它让我知道它不使用Classic.@H_404_5@

为什么IISExpress如此依赖system.web而IIS 7.5使用system.webServer?@H_404_5@

解决方法

好吧,我尝试了一些不同的东西:

>将existingResponse更改为PassThrough,如here所示@H_404_5@

< httpErrors errorMode =“Custom”existingResponse =“Replace”>@H_404_5@

不!@H_404_5@

>如评论here中所述,设置TrySkipIisCustomErrors = false@H_404_5@

Notta!@H_404_5@

我最终通过简单地将existingResponse更改为Replace来使其工作.@H_404_5@

>谁知道!@H_404_5@

这就是system.webServer现在的样子:@H_404_5@

<httpErrors errorMode="Custom" existingResponse="Replace">
        <remove statusCode="404" subStatusCode="-1" />
        <error statusCode="404" path="/NotFound" responseMode="ExecuteURL" />
        <remove statusCode="500" subStatusCode="-1" />
        <error statusCode="500" path="/ServerError" responseMode="ExecuteURL" />
    </httpErrors>

为什么这个解决方案没有任何意义@H_404_5@

Replace – This value make custom error module to always replace the
error information with text generated by custom error module. If
existingResponse is set to “Replace”,errors/exceptions generated by
Asp.Net/WCF are replaced by IIS7 errors.@H_404_5@

http://blogs.iis.net/ksingla/archive/2008/02/18/what-to-expect-from-iis7-custom-error-module.aspx@H_404_5@

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