こんにちは、私はライブユーザーの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 をプロパティとするクラスです。
私を助けてください