Hi kjell.ek,
In method below you need to return a string value not a bool value.
- Public Overrides Function FindUserLoginName(ByVal nickName As String) As String
- Return True
- End Function
If you set like below, no matter what value you set in moderator, it will always display “Ken”.
So please check your code and make sure it returns a right value.
- Public Overrides Function FindUserLoginName(nickName As String) As String
-
-
- Return "ken"
-
- End Function
chat provider reference :http://www.cutesoft.net/ASP.NET+Chat/Developer-Guide/scr/DeploymentIntegration.htm
Regards,
ken