Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1020383
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T11:09:32+00:00 2026-05-16T11:09:32+00:00

We usually catch unhandled exceptions in Global.asax, and then we redirect to a nice

  • 0

We usually catch unhandled exceptions in Global.asax, and then we redirect to a nice friendly error page. This is fine for the Live environment, but in our development environment we would like to check if CustomErrors are Off, and if so, just throw the ugly error.

Is there an easy way to check if CustomErrors are Off through code?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T11:09:33+00:00Added an answer on May 16, 2026 at 11:09 am

    Yep, the through WebConfigurationManager:

    System.Configuration.Configuration configuration =
        System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("/");
    
    System.Web.Configuration.CustomErrorsSection section =
        (CustomErrorsSection)configuration.GetSection("system.web/customErrors");
    

    Once you have the section, you can check whether the mode is on or off as follows:

    CustomErrorsMode mode = section.Mode;
    if (mode == CustomErrorsMode.Off)
    {
        // Do something
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I usually layout my Java SE methods like this. Should I try to catch
I wish to know if i can catch the unhandled exceptions thrown by another
I usually do something like this: Dim Attempts = 0 Try Retry: <Block> Catch
Usually when I need to fork in C, I do something like this: pid_t
Our code catches the general exception everywhere. Usually it writes the error to a
In an application I'm making, sometimes exceptions that are thrown but unhandled, seem to
When implementing error-handling using the built-in validation-helpers on a strongly-typed view, you usually create
We usually catch exception in the upper level of a code like the GUI
Usually I work with NoResultException to return an empty object, e.g. an empty error
I am usually pretty good to write simple regular expressions, but this time I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.