Tagged Questions

2
votes
7answers
781 views

[HandleError] attribute does not seem to act at all…

I am having problems using the [HandleError] attribute on my Controller Actions - it doesn't seem to work at all (i.e. it doesn't matter if the filter is there or not - I get the s …
1
vote
3answers
398 views

ASP.NET MVC HandleError not working (customErrors is set to “On”)

I believe I have set up our MVC app to use [HandleError] properly. This is my controller: [HandleError] public class SupportController : BaseController { public ActionResult …
0
votes
2answers
51 views

ASP.NET MVC user friendly 401 error

Hello. I have implemented errors handling in ASP.NET MVC site in a way like suggests this post: http://stackoverflow.com/questions/619895/how-can-i-properly-handle-404s-in-asp-net- …
12
votes
3answers
6k views

asp.net MVC HandleError

How do I go about the [HandleError] filter in asp.net MVC Preview 5? I set the customErrors in my web.config file <customErrors mode="On" defaultRedirect="Error.aspx"> &lt …
0
votes
1answer
59 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 …
3
votes
5answers
1k views

ASP.net MVC [HandleError] not catching exceptions.

In two different application, one a custom the other the sample MVC application you get with a new VS2008 MVC project, [HandleError] is not catching exceptions. In the sample appl …
1
vote
3answers
670 views

ASP.Net MVC HandleError throwing 500 Internal Server Error

Hi folks I have the following HandleError filter on my controller: [HandleError(ExceptionType = typeof(ArgumentException), View = "DestinationError")] I've set-up the Web.Config …
2
votes
5answers
895 views

MVC Beta [HandleError] Attribute (need help)

I've tried this both with and without the 'ExceptionType' parameter. I have an Error.aspx page in both the Views/Shared folder and the Views/thisController folder. But everytime I …