我的一个网页出现运行时错误。
该错误告诉我customErrors mode="Off"
在 web.config 文件中进行设置,这没有什么区别。(我假设服务器配置为不抛出特定错误)
我的配置文件看起来像这样。
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<customErrors mode="Off"/>
</system.web>
</configuration>
它在本地运行良好。有没有办法让我确切地看到导致错误的原因?