Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Chat and Cute Web Messeng...
»
Re: Using existing membership information + chat + Allow Anonymous= Error!!!
Re: Using existing membership information + chat + Allow Anonymous= Error!!!
12-02-2009, 2:14 AM
Kenneth
Joined on 02-13-2008
Posts 3,886
Re: Using existing membership information + chat + Allow Anonymous= Error!!!
Reply
Quote
Hi dspoh,
Try this way
Dim
portal
As
CuteChat.ChatPortal = CuteChat.ChatSystem.Instance.GetCurrentPortal()
SyncLock
portal
Dim
myid
As
CuteChat.ChatIdentity =
New
CuteChat.AppChatIdentity(
"nickname"
,
False
,
"User:ken"
,
"0.0.0.0"
)
Dim
contacts
As
CuteChat.IChatUserInfo() = portal.DataManager.GetContacts(myid)
For
i
As
Integer
= 0
To
contacts.Length - 1
Response.Write(contacts(i).UserId)
Next
End
SyncLock
Regards,
Ken
View Complete Thread