Tagged Questions
The handleerror tag has no wiki summary.
61
votes
4answers
39k 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 ...
21
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:
...
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. ...
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
1answer
4k views
When was handleError removed from jQuery?
I'm revisiting some old code, and have found it doesn't work with jQuery 1.6 because it cannot find $.handleError(). A quick search of the jQuery code shows nothing, so I guess this function has been ...
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
514 views
How can I make HandleErrorAttribute work with Ajax?
In my ASP.NET MVC 2 application I use HandleErrorAttribute to display a custom error page in case of unhandled exceptions, and it works perfectly unless the exception happens in an action called by ...
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
1answer
272 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 ...
1
vote
2answers
367 views
MVC HandleError returns error 500 and view error page
I am using MVC 3 with VS2010 and trying to get [HandleError] working. I created a test in the controller to simulate a crash as follows:
[HandleError]
public ActionResult Crash()
{
throw new ...
1
vote
2answers
166 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
713 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
45 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
1answer
17 views
How to use [HandleError] without Master Page
I am trying to use [HandleError] in MVC to redirect any un-handled exceptions to the "Error.aspx" page in the "Shared" folder. By default the Visual Studio 2010 MVC2 template creates a simple MVC ...
0
votes
1answer
82 views
Is it possible to have ActionFilter exceptions handled via the [HandleError] mechanism?
I have a custom action filter (AuthenticateAttribute) in my ASP.NET MVC 3 application that ensures that users are logged in.
I want to raise exceptions in the OnActionExecuting method and would like ...
0
votes
1answer
70 views
Question reg. HandleError attribute in ASP.NET MVC 3
If I register the HandleError attribute in global.asax.cs file as below,
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new HandleErrorAttribute());
}
...
0
votes
3answers
348 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
119 views
MVC Error handling using Action Filters
I would like to know best practice to handle exceptions.
I have 3 types of exception flows
1) Warnings: - In this I am required to display the partial data received from the service and also the ...
0
votes
1answer
373 views
ASP.NET MVC Override HandleError causes View to not render
In my app I'm using "HandleError" whereby if an error happens, my "Error.vbhtml" view renders. This is working great, except now I want to also log the error. I've built a custom HandleError Class, ...
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
277 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
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:
...