这是我的 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>
当我打开日志时,我看到许多 ApplicationStart 调用穿插着使用调用。为什么我的应用程序似乎重新启动了这么多?