Re: Cute Web Messenger's Display name limited to 40 characters issues

  •  07-07-2010, 1:26 AM

    Re: Cute Web Messenger's Display name limited to 40 characters issues

    Hi dspoh,
     
    Please try the code below. I tested on asp.net 1.1, it works fine.
     
    1. Class MyDataManager   
    2.          Inherits CuteChat.AppDataManager   
    3.          Public Sub New(ByVal portal As AppPortal)   
    4.              MyBase.New(portal)   
    5.          End Sub  
    6.          Public Overrides Sub UpdateUserInfo(ByVal info As IChatUserInfo)   
    7.                 
    8.              If Not info.DisplayName Is Nothing And info.DisplayName.Length > 100 Then  
    9.                  info.DisplayName = info.DisplayName.Substring(0, 100)   
    10.              End If  
    11.              If Not info.Description Is Nothing And info.Description.Length > 150 Then  
    12.                  info.Description = info.Description.Substring(0, 150)   
    13.              End If  
    14.   
    15.              Dim provider As IChatDataProvider = Me.CreateDataProvider()   
    16.              provider.UpdateUserInfo(info)   
    17.               
    18.          End Sub  
    19.      End Class  
    20.   
    21.      Public Overrides Function CreateDataManagerInstance(ByVal portal As AppPortal) As AppDataManager   
    22.          Return New MyDataManager(portal)   
    23.      End Function  
     
    Regards,
     
    Ken
View Complete Thread