Tagged Questions
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
919 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 ...
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 ...
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
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
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
711 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
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
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 && ...