Tagged Questions

3
votes
2answers
556 views

ErrorAttribute vs OnException vs Application_Error

I want to handle application wide error and show a ErrorView page in asp.net mvc. There are 3 ways to do it (or i know). 1) ErrorAttribute in BaseController:Controller class. Can be used on ...
1
vote
2answers
130 views

How to know if the request is ajax in asp.net in Application_Error()

How to know if the request is ajax in asp.net in Application_Error() I want to handle app error in Application_Error().If the request is ajax and some exception is thrown,then write the error in ...
1
vote
1answer
188 views

How to handle non-existing routes in MVC that lead to errors?

In my application, I have some controllers that use specific routes and some that use the default route. As a result, I have something like this: //.. other more specific routes routes.MapRoute( ...
0
votes
0answers
19 views

Application_Error doesnt fire for html file for asp.net mvc plus webform site

We have a site mixture of webforms and mvc work. Everything works fine. but when someone request some static content (say html page or image), it doesnt display the default page which is specified in ...
0
votes
1answer
166 views

Static file requests don't raise application_error event

in my Asp.Net MVC project I'm cathing Http FileNotFound Exceptions (for a missing image) and then redirect request to a default image like below protected void Application_Error(object sender, ...
0
votes
0answers
601 views

ASP.NET MVC - Illegal characters in path - redirect from Application_Error

In my application I generated few url which contained " (double quotes), unfortunately. I corrected the url's but google bot already indexed wrong urls. Now I get quite often following exception: ...
0
votes
1answer
612 views

Application_Error event in Global.asax not firing in Release Mode? ASP.NET MVC application

I'm working on an ASP.NET MVC application. I'm having a problem where my Application_Error() event in my Global.asax file isn't firing in Release Mode. If I compile in Debug it fires just fine. PS: ...
0
votes
2answers
547 views

Server.Transfer cannot render an MVC-View

In my Application_Error event handler i want to render an MVC-View for 404. I do not want to redirect because of SEO. void Application_Error(...) { if (serverException is HttpException && ...