Re: problem with admin function in chat rooms.

  •  08-17-2006, 10:38 PM

    Re: problem with admin function in chat rooms.

    the intagration code is correct and the isadmin session is checked apon login to the site so there is no way that the non admin users should have the access. Do I need to change any of the code below?
     
    public bool IsAdministrator(string useruniquename)
        {
            if(Session["IsAdmin"]!=null)
      return true;
      
             return false;

    Paul
    Post Hope
View Complete Thread