Here's the snippet from my Global.asax:
<script runat="server">
void Application_Start(object sender, EventArgs e) {
// log this call
EventLogger.Log("ApplicationStart");
}
void Application_BeginRequest(object sender, EventArgs e) {
// log what the user is doing
UsageLogger.Log(UsageLogger.GetServerVariables());
}
</script>
When I open the log, I see many ApplicationStart calls interspersed with usage calls. Why does my application seem to restart so much?