Re: Questions on Cute Chat Standalone

  •  06-04-2005, 1:48 PM

    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 Complete Thread