Questions on Cute Chat Standalone

Last post 06-04-2005, 1:48 PM by cutechat. 1 replies.
Sort Posts: Previous Next
  •  06-02-2005, 5:39 PM 7187

    Questions on Cute Chat Standalone

    Hello.
    Can you please help with admin questions:
    I *assumed* that the Moderator's function was to let messages through to a Chat room.  When I tested a Moderator, I couldn't figure out what their function is.  I couldn't right click on a user to kick them out.  I am really hoping that the Moderator can allow or disallow messages to go through to the Chat room.
     
    I tried to make a chat room hidden to remove access to it.  Clicking the hidden checkbox in Room Administrator didn't remove access from the default.aspx page.
     
    Can you tell me if there is documentation anywhere on how to do some of these functions?
     
    Thanks so much.
  •  06-04-2005, 1:48 PM 7255 in reply to 7187

    Re: Questions on Cute Chat Standalone

    Hello:

    We haven't make  convenience UI now . we will impove this .

    I also forgot to skip the hidden lobbies in the sample too .

    in the default.aspx of sampleportal , the code should be :

    Chat_Lobby lobbies[]=this.GetAllCuteChatLobbies();
    ArrayList list=new ArrayList();
    foreach(Chat_Lobby lobby in lobbies)
    {
        if(lobby.IsHidden)continue;

        list.Add(lobby);
    }
    this.DataList_Lobbies.DataSource = list;
    this.DataList_Lobbies.DataBind();
    Regards , Terry .
     
     
View as RSS news feed in XML