我有一个ASP.Net MVC - 5应用程序,我想在访问它之前检查会话值是否为null.但我无法这样做.
//Set System.Web.HttpContext.Current.Session["TenantSessionId"] = user.SessionID; // Access int TenantSessionId = (int)System.Web.HttpContext.Current.Session["TenantSessionId"];
我从SO尝试了很多解决方案
尝试
if (!string.IsNullOrEmpty(Session["TenantSessionId"] as string)) { //The code }
请指导我.
错误:NULL引用
if(Session["TenantSessionId"] != null) { // cast it and use it // The code }