Tagged Questions

19
votes
6answers
13k views

ASP.NET Custom 404 Returning 200 OK Instead of 404 Not Found

After trying to setup my site for Google Webmaster Tools I found that my Custom ASP.NET 404 page was not returning the 404 status code. It displayed the correct custom page and told the browser that ...
6
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
202 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
4answers
1k 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" ...
1
vote
3answers
975 views

How to display Custom error message on asp.net compilation errors

I have configured my web.config to show 'error.htm' error page when exceptions occur on the website. But I am unable to show the page when an asp.net compilation error occurs. How do I make that ...
0
votes
1answer
29 views

Keeping Original URL while being redirected to Error.aspx

There is a question like the one below and Test System says the answer B is correct but it seems as it states that "You must also ensure that the original URL in the browser is not changed", D should ...
0
votes
3answers
101 views

IIS 6 swallowing errors when using <customErrors mode=“On”

I have a application (folder with an app pool) running on iis 6 where im trying to setup a custom error page. I in the web config I have a element for the custom error but it never shows up. If I go ...
0
votes
4answers
342 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
374 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 ...