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