void Application_Error(object sender,EventArgs e) { var sessionId = Session.SessionID; //skipped code }
例如,如果在Begin_Request发生错误,会话将不可用,因为它尚未创建。
总之,有时它会有时候不会工作,这取决于错误发生的时间。
最好在访问会话ID之前检查会话对象的状态,例如
HttpContext context = HttpContext.Current; if (context != null && context.Session != null) ...