Tagged Questions
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. ...
1
vote
2answers
364 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 ...
0
votes
1answer
16 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
118 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
276 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 ...