I have an ASP.NET 4.0 (MVC) application. Custom errors in config file are setup like this:
<customErrors mode="On" defaultRedirect="~/error.aspx" />
If somebody tries to go to url that doesn't exist (http://server/app/thisdoesntexist), he is redirected to erorr.aspx, that works with no problem. The targe url is http://server/app/error.aspx?aspxerrorpath=/app/thisdoesntexist
However, if there is aspxerrorpath= (http://server/app/thisdoesntexist?aspxerrorpath= ) in the url, there is no redirection. Just ugly ASP.NET page that says
Server Error in '/app' Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /app/thisdoesntexist
How can I bypass the check for aspxerrorpath parameter in query string? It seems that there is no way...
Asking, because our customer complained about the ugly page.
And besides that I found in decompiled System.Web code this:
...
if (this.Request.QueryString["aspxerrorpath"] != null)
{
bool result = false;
return result;
}
if (redirectMode == CustomErrorsRedirectMode.ResponseRewrite)
{
this.Context.Server.Execute(url);
}
else
{
if (url.IndexOf('?') < 0)
{
url = url + "?aspxerrorpath=" + HttpEncoderUtility.UrlEncodeSpaces(this.Request.Path);
}
this.Redirect(url, false);
}
which tells a lot. But there is no explanation for this silly behaviour.