I have an ASP.NET MVC 3 application (dummy example below):
http://downloads.joshz.com/ErrorsMvc.zip
I have the default route mapped up:
/Controller/Action/Id
If I enter in an invalid action with a valid route I can see my custom error as it's processed by MVC:
/Blah/Blah/Blah -> My Lovely Error
But if I do:
/Blah/Blah/Blah/Blaaaah
Or:
/Blah/Blah/Blah/Blaaaah.jpg
It is processed by the StaticFileHandler - what is the best way to deal with this? A catchall route in MVC? But then MVC processes every single request! No matter what I do in IIS settings with httpErrors I don't get a nice error page for my second link.
I've played around with:
- HttpErrors in Web.Config
- CustomErrors section
- Setting
Response.TrySkipIisCustomErrors = true;on a custom Errors controller - Setting
existingResponse="PassThrough"and so on. But I can never get a custom, pretty error page!
Stackoverflow have managed to do it...
http://stackoverflow.com/a/b/c/d/e/f/g/h/i/j/k/j.jpg
Please help!!