Jean Abela
Jean Abela

Reputation: 3

Showing Runtime Errors in ASP.NET

Since JavaScript Alerts Are deprecated and I Do Not wish to use modal boxes. How Can I show Runtime errors which happen in the code behind in the browser.

Upvotes: 0

Views: 1990

Answers (1)

chaliasos
chaliasos

Reputation: 9793

Put this in the web.config:

<?xml version="1.0"?>
<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

EDIT

If you want to see errors that are not configuration errors but they are logic errors of your application then you should keep logs.

Upvotes: 2

Related Questions