Re: Problem in integrating with a simple application of mine

  •  01-27-2009, 4:02 PM

    Re: Problem in integrating with a simple application of mine

    if i changed to this
     
    public override bool GetUserInfo(string loginName, ref string nickName, ref bool isAdmin)
            {
                if (loginName == "admin")
                {
                    nickName = "admin";
                    isAdmin = true;
                    return true;
                }
                return false;
            }
     
    but i get the same result as the first Screen shot i posted
     
     
    Thanks
View Complete Thread