Re: Using existing membership information + chat + Allow Anonymous= Error!!!

  •  12-02-2009, 2:14 AM

    Re: Using existing membership information + chat + Allow Anonymous= Error!!!

    Hi dspoh,
     
    Try this way
     
    1. Dim portal As CuteChat.ChatPortal = CuteChat.ChatSystem.Instance.GetCurrentPortal()    
    2. SyncLock portal    
    3.     Dim myid As CuteChat.ChatIdentity = New CuteChat.AppChatIdentity("nickname"False"User:ken""0.0.0.0")    
    4.        
    5.     Dim contacts As CuteChat.IChatUserInfo() = portal.DataManager.GetContacts(myid)    
    6.     For i As Integer = 0 To contacts.Length - 1    
    7.         Response.Write(contacts(i).UserId)    
    8.            
    9.     Next    
    10. End SyncLock   

    Regards,
     
    Ken
View Complete Thread