嗨,我需要获取实时用户的 id,我能够做到。但是当我从一个端口切换到另一个端口时,它不会在另一个端口上获取用户
我已经这样做了:
public static Nullable<int> GetLiveUser()
{
if (HttpContext.Current.Session[ConstantHelper.LoginAccountID] != null)
{
return ((int)HttpContext.Current.Session[ConstantHelper.LoginAccountID]);
}
else
{
return null;
}
}
ConstantHelper 是一个以 LoginAccountID 作为属性的类。
请帮我