Tagged Questions
1
vote
1answer
587 views
Error executing child request for
In my MVC3 application I'm getting the above mention error when I try to handle a maximum request exceeded error.
I'm handling the exception at the application level. I'm trying to redirect to an ...
4
votes
3answers
868 views
Handling exceptions in global.asax ASP.NET MVC
I have code which is catching all exceptions in Global.asax
protected void Application_Error(object sender, EventArgs e)
{
System.Web.HttpContext context = HttpContext.Current;
...
0
votes
0answers
351 views
Global Exception redirect handling in asp.net 4.0
In my asp.net application I want to handle all the exceptions in one page.
That's to say no matter which type of exception is thrown,it shoudle redirect to the specified page:"error.aspx",and in this ...
1
vote
1answer
93 views
Application_OnError not always working
I experience strange problem. We have error handling in global.asax that would redirect user on special page in case if error happened:
void Application_Error(object sender, EventArgs e)
{
...
4
votes
3answers
330 views
How to get more detail from an exception?
I have a .NET 4.0 web application which implements an error handler within the Application_Error event of Global.asax.
When an exception occurs this intercepts it and sends me an email including a ...
1
vote
3answers
3k views
ASP.Net Exceptions - Catch in Page or handle in Global.asax (Application_Error)
Looking for best practice focused answers here with explanations.
Should the presentation layer of an ASP.Net app catch and handle exceptions thrown from the business layer, or should these be ...
3
votes
2answers
2k views
ASP.NET customErrors with mode=remoteOnly and global.asax handling exceptions
I have custom errors set in the web config file as follows:
<customErrors mode="RemoteOnly" defaultRedirect="GenericError.aspx" />
Fine and dandy... I like that mode="RemoteOnly" facilitates ...
0
votes
2answers
739 views
Exceptions, Global.asax, and the eventlog
I would like to log unhandled exceptions from the global.asax to the Application eventlog. However, I've noticed that IIS is already logging these unhandled exceptions as warnings. Is there a way to ...
6
votes
4answers
2k views
How do I log unhandled exceptions in ASP.NET MVC?
Here's what I'm trying to do in my Global.asax.vb:
Public Class MvcApplication
Inherits System.Web.HttpApplication
Shared Sub RegisterRoutes(ByVal routes As RouteCollection)
...
7
votes
2answers
3k views
Unhandled Exceptions with Global.asax
I am emailing unhandled exception details from global.asax. How can I get the path and/or filename of the aspx file or assembly file where an exception was not handled.
This info was showing up in ...