Hi Armand66,
The chat admin is defined by the method below.
- PublicOverridesFunctionGetUserInfo(loginNameAsString,ByRefnickNameAsString,ByRefisAdminAsBoolean)AsBoolean
- DimuserAsSystem.Web.Security.MembershipUser= System.Web.Security.Membership.GetUser(loginName,False)
- IfuserIsNotNothingAndAlsouser.IsApprovedThen
- nickName = user.UserName
- isAdmin =Roles.IsUserInRole(user.UserName,"Administrators")
- ReturnTrue
- EndIf
- ReturnFalse
- EndFunction
You set isAdmin =Roles.IsUserInRole(user.UserName,"Administrators") , so just need to login your site as 'Administrators' user, and go to the chat admin page http://yoursite/CuteSoft_Client/CuteChat/ChatAdmin/.
By the way, step 6 in http://cutesoft.net/ASP.NET+Chat/Developer-Guide/scr/DeploymentIntegration.htm shows you how to create the chat admin link.
Regards,
Ken