Hi,
The current application that I'm working on seems to recycle the application pool very often, but when it ends, id doesnt pass Application End or Application Start.
This is how my Global.asax looks like.
protected void Application_Start(object sender, EventArgs e)
{
_log.Info("Application_Start");
}
protected void Application_End(object sender, EventArgs e)
{
_log.Info("Application_End");
}
protected void Application_Error(object sender, EventArgs e)
{
_log.Error("Application_Error");
_log.Error(Server.GetLastError());
}
What can cause the application to "die" without passing End or Error?