Hi @deskcheck1-0579,
to see the error, set the following.
<system.web>
<customErrors mode="Off"/>
</system.web>
setting customErrors to RemoteOnly indicates, the actual error only displays locally, means when you browse the site with in the server, you will see the error. if you switch off the customErrors, you will see the actual error always.
Hope this helps