Custom Error Handling in ASP.NET MVC
I've tried implementing the answer listed here: Properly handling 404s which came from this blog post: Real World Error Handling
All I get is a blank page. I step through the debugger and I see the Exception catch, the ErrorController method get called and the return of the View execute, but then I don't see anything in the web browser. Firebug tells me I got back a 0 byte response from the server and the URL is not changed to the ErrorControll开发者_开发问答er. Any ideas?
Nevermind, I've found the answer. Copy and Paste error from the example. My view is called Error, the examples have it called Index.
精彩评论