Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のweb.configにhttpErrors構成があります
<system.webServer> <httpErrors errorMode="DetailedLocalOnly" existingResponse="Replace" />
existingResponse="Replace" のため、ローカルのスクリプト エラーの詳細は表示されません。スクリプト エラーの詳細をローカルとクライアントで確認したい カスタム エラー ページを表示したい
web.config ファイルの coustomError タグを確認してください。
<customErrors mode="RemoteOnly"> </customErrors>
モードを「RemoteOnly」に設定します。