Tagged Questions

61
votes
4answers
40k 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"> <error ...
22
votes
4answers
9k 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 application I have: ...
6
votes
5answers
4k 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 Toss() { ...
5
votes
3answers
4k views

ASP.NET MVC user friendly 401 error

I have implemented errors handling in ASP.NET MVC site in a way like suggests this post. With 404 errors all works fine. But how correctly show user friendly screen for a 401 error? They usually do ...
4
votes
6answers
4k views

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 same results...). ...
2
votes
1answer
322 views

ASP.Net MVC 3 - Order in HandleError attribute seems to work backwards?

Problem: When I use the Order property of the HandleError attribute, the highest order number gets applied first, as opposed to the lowest first. Details I want to set up my controller to handle ...
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. ...
2
votes
5answers
2k 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 run this I get a ...
1
vote
2answers
168 views

In ASP.NET MVC, why wouldn't I tack on HandleError on a base controller and be done with it?

Since HandleError is inherited by the derived Controllers, why wouldn't I just create (or have) a base controller, and apply HandleError on it so that any controllers that inherits from the base ...
1
vote
1answer
738 views

How do I pass ViewData to a HandleError View?

In my Site.Master file, I have 3 simple ViewData parameters (the only 3 in my entire solution). These ViewData values are critical for every single page in my application. Since these values are used ...
0
votes
2answers
87 views

RegisterGlobalFilters and HandleErrorAttribute not working

After struggling with RegisterGlobalFilters and HandleErrorAttribute forever I decided to go back to the bare bones. I created a new MVC 3 project in VS10, using the template. Add a throw ...
0
votes
3answers
383 views

ASP.NET MVC HandleError View Not Found

I'm trying to implement exception handling in ASP.NET MVC3 using the HandleError attribute. The code that I'm using looks like this: [HandleError(Order = 1, ExceptionType = ...
0
votes
1answer
85 views

Trouble with HandleError

I have the following Action Method: [HandleFtmsError] public ActionResult PerformanceChart(ChartViewModel chart) { var x = 1; var y = 0; var z = x/y; ...
0
votes
1answer
284 views

ASP.NET MVC HandleError and Order of Operations with other Attributes

I'm trying to get the HandleError attribute to work, but I'm having some difficulty because of a sort of a special circumstance. I have another attribute which checks against a blacklist of IPs in my ...
0
votes
1answer
372 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: ...