这个问题似乎与
this的帖子有关,但是我无法从线程中推断出一个解决方案.
我在我继承的应用程序中注意到这个代码(在记录异常被记录的日志文件中):
protected void Session_End(object sender,EventArgs e) { try { FormsAuthentication.SignOut(); FormsAuthentication.RedirectToLoginPage(); //if (this.Context.Handler is IRequiresSessionState || this.Context.Handler is IReadOnlySessionState) //{ // FormsAuthentication.SignOut(); // FormsAuthentication.RedirectToLoginPage(); //} } catch (Exception ex) { this.GetType().GetLogger().Error(ex); } }
我想知道一些事情首先,SignOut如何抛出空引用异常?这是一个例外的情况,还是在我的程序中做某些固有的错误?接下来,在抛出此异常之前,应该如何进行测试?
15:51:57,288 [13] ERROR ASP.global_asax – System.NullReferenceException: Object reference not set to an instance of an object.
at System.Web.Security.FormsAuthentication.SignOut()
at MvcApplication.Session_End
谢谢