Tagged Questions

7
votes
6answers
996 views

ASP.NET MVC - How to throw a 404 page similar to that on StackOverflow

I've currently got a BaseController class that inherits from System.Web.Mvc.Controller. On that class I have the HandleError Attribute that redirects users to the "500 - Oops, we screwed up" page. ...
2
votes
4answers
3k views

ASP.Net MVC HandleError throwing 500 Internal Server Error

I have the following HandleError filter on my controller: [HandleError(ExceptionType = typeof(ArgumentException), View = "DestinationError")] I've set-up the Web.Config so that customErrors are on. ...
0
votes
1answer
360 views

ASP.NET MVC Error Handling - View never renders, Web.config problem?

I have a [HandleError] attribute specified atop one of my controllers, specifying a View that I'd like to render in the event of an error. I also have the following config section in my web.config: ...