Tagged Questions
5
votes
1answer
1k views
Why is HttpContext.Session null when redirectMode = ResponseRewrite
As is suggested elsewhere, I am using redirectMode = ResponseRewrite in my custom error configuration so my custom error page can access the exception info. This has worked like a charm for some ...
2
votes
2answers
192 views
Custom error setting being ignored for locations denied in the web.config
In a ASP.Net 4 and MVC2 application we have an odd configuration error.
The web.config looks something like this:
<configuration>
<location path="blockedpath">
...
1
vote
3answers
847 views
Web.config isn't showing errors remotely even with customErrors=“Off” (on ubuntu/mono)
Here is my Web.config file:
<?xml version="1.0"?>
<configuration>
<system.web>
<customErrors mode="Off" />
<compilation debug="true" strict="false" ...
0
votes
4answers
311 views
How to override web.config customErrors settings at runtime?
I have the following code in the web.config file for my ASP.NET C# app that's hosed on Azure:
<!-- Turn on Custom Errors -->
<!-- Switch the mode to RemoteOnly for Retail/Production -->
...
0
votes
2answers
369 views
How to clear inherited customErrors elements in Web.config?
As the article ASP.NET Configuration File Hierarchy and Inheritance says
the Web.config file for a specific Web
site contains settings that apply to
the Web site and inherit downward
...