I'm trying to configure Custom Errors in IIS6.
I select the 404 error, set the dropdown to "URL," then enter this as the URL "/404.aspx"
When go to:
http://mysite.com/no-page-here
It finds 404.aspx, but doesn't process it as a .Net page -- it tries to serve up the source as an XML file, then fails because it won't parse.
404s work fine on .Net pages because I set that in the CustomErrors element of the web.config. But for non-.Net resources, I have to use IIS errors, and it refuses to just redirect to the 404 page. It's trying to serve it up the source code, essentially.