Re: Moderators

  •  08-13-2010, 3:59 AM

    Re: Moderators

    Hi kjell.ek,
     
     
    In method below you need to return a string value not a bool value.
     
    1. Public Overrides Function FindUserLoginName(ByVal nickName As StringAs String  
    2.         Return True  
    3.     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.

    1. Public Overrides Function FindUserLoginName(nickName As StringAs String  
    2.   
    3.   
    4.     Return "ken"  
    5.   
    6. End Function  
    chat provider reference :http://www.cutesoft.net/ASP.NET+Chat/Developer-Guide/scr/DeploymentIntegration.htm

     

    Regards,

     ken

View Complete Thread