0

テスト プロジェクト用のライブラリを作成しています。ライブラリ プロジェクトを作成すると、名前空間が機能しません。助けてください

#region(GET LOGGED USER ID)

    static public Guid GetUserId()
    {
        Guid guUser = Guid.Empty;

        try
        {
            MembershipUser muUser = Membership.GetUser();
            if (muUser != null)
            {
                guUser = (Guid)muUser.ProviderUserKey;
                Membership.GetUser(guUser, true);
            }
            else
            {
                //Log out and redirect to login page
                FormsAuthentication.SignOut();
                FormsAuthentication.RedirectToLoginPage();
            }
        }
        catch (Exception ex)
        {
            ApplicationError.LogErrors(ex);
        }

        return guUser;
    }

    #endregion
4

1 に答える 1