Broadcast United

‘/’Application server error.

Broadcast United News Desk

[ad_1]



Runtime Errors







Runtime Errors





describe: An application error has occurred on the server. The current custom error settings for this application prohibit remote viewing of the details of the application error (for security reasons). However, it can be viewed through a browser running on the local server machine.

detail: In order to make the details of this specific error message viewable on remote computers, please create a This should then be marked The “mode” attribute of the tag is set to “Off”.






<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>







notes: By modifying the application By configuring the “defaultRedirect” attribute of the tag to point to a custom error page URL, you can replace the error page you are currently seeing with your custom error page.






<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>









[ad_2]

Source link

Share This Article
Leave a comment

Leave a Reply

Your email address will not be published. Required fields are marked *