I have a site where I use CustomErrors in the web.config to specify a custom error page, and that\'s working just fine. The custom 404 page is also specified in the IIS con
The aspxerrorpath parameter is passed if the error was caught by .NET (and the error page specified in web.config is used). This happens if you're using the development web server, or if IIS is configured not to check that the file exists.
If IIS checks that the file exists, then the custom error configured in IIS is used, and the requested URL is included in the querystring as something like
http://example.com/FileNotFound.aspx?404;http://example.com/badpage.aspx