0
votes
0answers
9 views
Custom error 404 - bypassed in specific case
I have a question regarding HTTP 404 error handling by IIS. I know that this is a subject discussed very much but still i cannot find the answer.
I have my custom page NotFound404.aspx and works just …
0
votes
1answer
23 views
Returning Requested URL within Custom Error Page in ASP.net
Working in ASP.net 3.5 and MVC 1.0.
What I would like to do is return the requested URL, which generates a 404 error, within the custom error page. Much like Google does on their error pages …
0
votes
2answers
32 views
Custom Errors not Forwarding on ASP.NET MVC Site
On my site, a broken link throws the default, page not found error. In the web.config I have turned on CustomErrors and forward 404 errors to a custom message.
On my dev box it works, on the host it …
0
votes
0answers
447 views
Proper Exception Handling with ASP.NET MVC, ELMAH and custom Error Pages
Hi folks,
consider the following situation:
There is an ASP.NET MVC application which utilizes ELMAH for centralized ExceptionLogging. A Controller is marked with the HandlerError Attribute to catch …
2
votes
4answers
679 views
How to get the message in a custom error page (Tomcat)?
In JSPs, you may use response.sendError(int code, String message) to return a particular error code (eg 404 for not found) and a message as well.
These messages display fine, as long as you use the …
2
votes
2answers
483 views
Display different Tomcat error pages depending on URL of original request
I would like to use Tomcat's error-page directive to display various different error pages in response to various types of exceptions. However, I want the error page displayed to have different …
3
votes
2answers
268 views
Safari browser won’t display Error 401 page.
I'm using Apache 2 and have a custom 401 page, in httpd.conf
ErrorDocument 401 /error/unauthorized.html
When I access a protected resource, all browsers show the basic http authentication dialog. …
0
votes
3answers
285 views
asp.net custom error page and file without extension
How can i get IIS 7 to return my custom error pages for file without extension? I got it working for file with extension, but when the extension is not specified, i get the generic page.
8
votes
5answers
3k views
ASP.NET custom error page - Server.GetLastError() is null
I have a custom error page set up for my application:
<customErrors mode="On" defaultRedirect="~/errors/GeneralError.aspx"
/>
In Global.asax, Application_Error(), the following code works to …
1
vote
1answer
144 views
Is it okay to extend a base view in Django’s error pages (HTTP 404 and 500)?
Django's views documentation states that "the default 500 view passes no variables to this template and is rendered with an empty Context to lessen the chance of additional errors," but is it okay to …
2
votes
2answers
844 views
Custom error page configured in IIS for code 400 (bad request) is ignored
For my website I configured some custom error pages.
If I generate a 404, the redirect works fine.
When hitting a 400, the "bad request" text shows up instead of the configured URl.
As a test I …
3
votes
3answers
1k views
What are the 404;1, 404;2 etc HTTP error codes for?
In IIS I can configure my custom error pages.
For each HTTP Error code I can say where to go. Several codes have a number of "sub" codes available. For example 404 has a regular 404, 404;1, 404;2 and …
