Hello Corey Voggesser!
Welcome to Microsoft QnA! Hope you are doing well! 😊
The error you're encountering typically occurs when the application settings prevent detailed error messages from being viewed remotely for security reasons. To troubleshoot this issue, you can modify the web.config
file located in the root directory of your web application.
To view detailed error messages remotely, you can change the <customErrors>
tag in your web.config
file as follows:
<configuration>
This will disable custom error pages and allow you to see the details of the error. However, be cautious when using this setting in a production environment, as it could expose sensitive information.
If you'd prefer to show a custom error page instead of the default error page, you can use the defaultRedirect
attribute like this:
<configuration>
This will show the custom error page when an error occurs remotely.
Let me know if this helps or if you need further assistance! 😊
P.S If I am able to help you, do mark it as accepted answer.