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 .