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);
}