Re: Integration errors in new site still under development

  •  02-26-2007, 2:16 PM

    Re: Integration errors in new site still under development

    Yep, got that taken care of.  Thanks.
     
    Can you provide more detailed instructions on the following?
     

    Step 4: Add the chat rooms in your web pages


    Get the chat rooms collection from the database, then databind the results to a DataGrid/DataList/Reapter server control in your web page.

    To get the chat rooms collection:

    C#:

       ArrayList lobbies=new ArrayList();
       foreach(CuteChatLobby lobby in ChatApi.GetLobbyArray())
       {
           if(lobby.IsHidden)
              continue;

           lobbies.Add(lobby);
       }

View Complete Thread