Re: problem with admin function in chat rooms.

  •  09-01-2006, 12:10 AM

    Re: problem with admin function in chat rooms.

    Yes, I have checked again .
     
    the IsAdministrator function is not for current user . You must query your database and get whether the 'useruniquename' is the administrator.
     
    public bool IsAdministrator(string useruniquename)
    {
        
         return MyUserModal.IsMySiteAdmin(useruniquename);
     
    }
View Complete Thread