Tagged Questions
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
102 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
0answers
123 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
704 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
3answers
934 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
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: ...