26

我创建了一个 asp.net 网页并将其上传到网络服务器。但是,当我尝试远程查看页面时,我在 web.config 文件中收到有关 customerror 标记的错误。该页面在本地工作,没有错误或警告。此外,如果我将页面作为 .html 文件上传,我可以远程查看它。我见过很多其他人遇到此错误,但“解决方案”只是说将 customErrors 标记更改为“关闭”,我已经完成但不起作用,你知道网络服务器有问题还是什么可能是这里的问题吗?

这是错误页面:

“/”应用程序中的服务器错误。运行时错误描述:服务器上发生应用程序错误。此应用程序的当前自定义错误 > 设置阻止远程查看应用程序错误的详细信息(出于安全原因)。但是,它可以通过在本地服务器机器上运行的浏览器来查看。

详细信息:要使此特定错误消息的详细信息可以在远程 > 机器上查看,请在“web.config”配置文件中创建一个标签 > 位于当前 Web 应用程序的根目录中。该标签 > 应将其“模式”属性设置为“关闭”。

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

注意:您看到的当前错误页面可以通过 > 修改应用程序的 >configuration 标记的“defaultRedirect”属性以指向自定义错误页面 URL 来替换为自定义错误页面。

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>

这是我的 web.config 文件:

<?xml version="1.0"?>
<configuration>

  <system.web>
    <customErrors mode="Off"/>
  </system.web>

  <system.web>
    <compilation debug="true"/>
    <authentication mode="None"/>
  </system.web>
</configuration>
4

4 回答 4

59

你应该只有一个<system.web>在你的Web.Config Configuration File.

<?xml version="1.0"?>
<configuration>
  <system.web>
    <customErrors mode="Off"/>
    <compilation debug="true"/>
    <authentication mode="None"/>
  </system.web>
</configuration>
于 2010-12-06T07:07:45.560 回答
0

这些解决方案都不适合我,但我的 web.config 中有这个

<log4net debug="true">

要么删除所有这些,要么去阅读应用程序文件夹中的错误日志\日志

于 2021-09-01T04:19:35.143 回答
-2

将来某个时候在 web.config 中注释掉以下代码

 <!--<system.codedom>
    <compilers>
      <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
      <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
    </compilers>
  </system.codedom>-->

更新为以下代码。

<system.web>
    <authentication mode="None" />
    <compilation debug="true" targetFramework="4.6.1" />
    <httpRuntime targetFramework="4.6.1" />
    <customErrors mode="Off"/>
    <trust level="Full"/>
  </system.web>
于 2017-11-16T14:05:18.073 回答
-2

例如,在我的情况下,我不小心将某些用户的角色更改为不正确,并且我的应用程序在启动期间出错(NullReferenceException)。当我修复它时 - 应用程序启动正常。

于 2018-10-10T12:42:41.087 回答