8

我有以下内容:

  <system.web>
    <compilation debug="true" targetFramework="4.5"/>
    <httpRuntime targetFramework="4.5"/>
    <customErrors mode="Off"/>   </system.web>

并且:

<system.webServer>
    <handlers>
      <remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit"/>
      <remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit"/>
      <remove name="ExtensionlessUrlHandler-Integrated-4.0"/>
      <remove name="OPTIONSVerbHandler"/>
      <remove name="TRACEVerbHandler"/>
      <add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0"/>
      <add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0"/>
      <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>
    </handlers>
  </system.webServer>

当我运行我的应用程序时,我收到一个错误页面:

HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.

Detailed Error Information:
Module     CustomErrorModule
Notification       SendResponse
Handler    Not yet determined
Error Code     0x80070490
Config Error       The configuration section 'system.webServer/httpErrors' cannot be read because it is missing a section declaration

有人可以帮我解释一下吗。

我认为我不需要自定义错误页面。但是,我阅读的所有内容都告诉我,解决方案是添加自定义错误页面。

4

2 回答 2

9

希望下面的答案对以后的人有所帮助,我将分享我在这个问题上的经验。

由于各种原因,可能会出现此错误。最近,由于以下原因,我遇到了错误:

  • 缺少 URL 重写模块。

我的 Web.config 文件包含<rewrite></rewrite>需要安装 IIS URL 重写模块的部分(可以使用 Web 平台安装程序完成)。

  • Azure SDK 升级。

我的 Web.config 文件包含以下条目:

<system.diagnostics>
  <sharedListeners>
    <add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener,
               Microsoft.WindowsAzure.Diagnostics,
               Version=2.3.0.0,
               Culture=...
               PublicKeyToken=...">

升级 Azure SDK (2.3.x -> 2.6.x) 后,无法解决对 2.3.x 版本的这种“硬”依赖。为了解决这个问题,我Version完全删除了该元素(包括Cultureand PublicKeyToken),因为在我的情况下依赖于最新的程序集版本是可以的。

于 2015-05-03T11:21:30.530 回答
0

我不得不从我的 Web 项目中删除 WindowsAzure.Diagnostics 引用(还包含一个感叹号)并将其再次添加到 2.7 版本中。之后问题没有出现

于 2015-10-26T08:44:09.027 回答