application-error Questions
5
Solved
I've got a PHP application on a free Heroku account. Today for no apparent reason I got Heroku's Application Error screen for about an hour. No downtimes on Heroku's status report page.
I'd like to...
Mraz asked 23/1, 2014 at 10:11
3
Since a few days ago, I have started receiving error messages from all my Azure websites:
"The controller for path '/admin/host/synctriggers' was not found or does not implement IController."
Thi...
Stairway asked 20/7, 2019 at 6:23
9
Solved
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)
{
v...
Dorsett asked 28/6, 2011 at 14:50
4
Solved
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 l...
Babs asked 26/9, 2011 at 6:40
6
Solved
I have a basic ASP.NET MVC2 site which logs a single "File does not exist" error every time a view (not partial views) is loaded. I am pretty sure this is because I am referencing a file, from the ...
Granular asked 13/9, 2010 at 23:5
3
Solved
I'm using Log4Net and logging everytime my ASP.NET-Application throws an error:
protected void Application_Error(object sender, EventArgs e)
{
Exception ex = Server.GetLastError();
Log.Error("...
Trackandfield asked 1/3, 2012 at 14:20
2
In my Global.asax I have defined the Application_error method :
protected void Application_Error(object sender, EventArgs e)
{
// Code that runs when an unhandled error occurs
// Get the except...
Monsoon asked 14/1, 2014 at 12:33
1
Solved
Background
I had [HandleError] in place in my MVC web app for exception handling but later it couldn't handle some exceptions so I was suggested to move on to the alternative Application_Error (my...
Keenan asked 13/9, 2012 at 18:6
2
Solved
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 indiv...
Plumule asked 11/6, 2011 at 19:36
3
Solved
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 val...
Toddy asked 11/12, 2009 at 20:11
2
Solved
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 excepti...
Martino asked 5/12, 2008 at 16:40
1
© 2022 - 2024 — McMap. All rights reserved.