我的web.config中有一个httpErrors配置
<system.webServer>
<httpErrors errorMode="DetailedLocalOnly" existingResponse="Replace" />
由于existingResponse =“Replace”,它没有显示本地脚本错误的详细信息。 我想在本地和客户端看到脚本错误的详细信息我想显示cusstom错误页面
答案 0 :(得分:0)
检查web.config文件中的coustomError标记。
<customErrors mode="RemoteOnly">
</customErrors>
将模式设置为“RemoteOnly”。