Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
5answers
2k views

Application_Error not firing when customerrors = “On”

I have code in the global.asax file's Application_Error event which executes when an error occurs and emails details of the error to myself. void Application_Error(object sender, EventArgs e) { ...
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 ...
3
votes
1answer
1k views

Convert an exception into HTTP 404 response in the Application_Error

First of all, quickly what exactly I want to achieve: translate particular exception into the HTTP 404 so the ASP.NET can handle it further. I am handling exceptions in the ASP.NET (MVC2) this way: ...
3
votes
2answers
920 views

How to get which page threw an exception to Application_error in aspx

I have a general exception handler, Application_error in my global.asax where I'm trying to isolate all the uncaught exceptions on all my many pages. I don't want to use Page_error to catch exception ...
2
votes
3answers
1k views

Handle “potentially dangerous Request.Form value…”

What's the best way to handle errors such as "A potentially dangerous Request.Form value was detected from the client" in ASP.NET? I'd like to keep the validation on, as my forms have no valid reasons ...
2
votes
4answers
1k views

Application Error thrown in Compact Framework app on Windows Ce 6.0

I get an application error thrown when I close the program using as cancel button which all it does is close the form. The error says: "Application appName.exe encountered a serious error and must ...
1
vote
2answers
132 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
2answers
90 views

Is it possible set cookies in Application_error

I'm trying to see if I can set a cookie during the Application_Error() event of the global.asax. When I debug my application, it looks like the code adds the cookie but the next time it loads, the ...
1
vote
1answer
153 views

Can I handle all errors through ASP.Net?

I am trying to create a 404 handling page but I am now stuck with the page only working for .aspx files, which isn't really what I need. I am running on IIS6. The site has a wildcard mapping, for ...
1
vote
1answer
117 views

How to detect that the application start failed?

Our Situation: We have several webservers behind a loabalancer (Astaro Security Gateway). On the webservers we run an asp.net application and we have customerrorpages configured for 404 and 500 ...
1
vote
2answers
320 views

DDE Server Windows:orcascr9.exe: Application Error

I've looked at the queries on SO that pertain to similar errors - but haven't found anything so far, to help with this particular problem I am having with an orcascript which I am running under ...
1
vote
1answer
189 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
0answers
103 views

WCF service application_error event stopped working

I have an asp.net web application with a WCF JSON service inside it. I catch all exceptions from asp.net global.asax Application_Error event. I use the same Application_Error event to catch any ...
0
votes
1answer
69 views

Asp.net MVC 3 view engine error

I am trying for custom error handling at global level in Application_Error. Exception ex = Server.GetLastError(); Server.ClearError(); AssortmentDefinitionLogManager.LogException(ex); ...
0
votes
0answers
53 views

Unable to redirect to custom error page from Application_Error event

I am trying to redirect to CustomError.aspx from Application_Error() from Global.asax file of my website, If exception is thrown from Application_Start(). as Request / Response has not been ...
0
votes
1answer
43 views

.Net Application_Error

In Global.asax i have code in Application_Error handler which stores the error message in HttpRuntime.Cache, logs the error to the application log file and then Transfers the user over to the ...
0
votes
0answers
127 views

Application_Error in Global.asax not firing for errors in ashx files

The problem is as the title says; we use Application_Error to capture errors in our app and email us the details, then forward the user to a friendly error page. Unfortunately this doesn't happen if ...
0
votes
0answers
118 views

how do i fire elmah logger after Application_Error

I'm small mechanism that analyse 404 errors i have small xml that contain old urls and redirect it to new im doing it in Application_Error but i see that elmah log error first and the fire ...
0
votes
0answers
125 views

Server.Transfer/Responce.Redirect in Application Error

I am using an asp fileupload input and have read that a "Maximum request length exceeded" error needs to be caught in the global.asax application_error so I initially made sure it was a maximum length ...
0
votes
1answer
167 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
1answer
712 views

Application_Error not firing

I'm not able to get my Application_Error method to fire in global.asax. I've placed a breakpoint in the first line of my Application_Error function but it never breaks there. Instead, the server is ...
0
votes
0answers
455 views

IIS 7.5 Application_Error Integrated mode

Please help, I am struggling with this all the day long. I have an MVC application and I am having some code in Application_Error (global.asa) This application uses a dedicated application pool ...
0
votes
0answers
603 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
3answers
938 views

Server.Transfer(“error_404.aspx”) in Application_Error returns a blank page

I look for HttpExceptions in the Application_Error sub of my global.asx Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs) Dim ex As Exception = ...
0
votes
1answer
616 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
548 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 && ...
0
votes
1answer
165 views

Application error

HI, I'm getting following error when I run the application after building it. Any solution to this problem is appreciated. "The application failed to initialize properly (0xc0000022). Click on OK ...