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

  •  07-05-2010, 11:32 PM

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

    Regarding this line of code:
    1. using (IChatDataProvider provider = this.CreateDataProvider())      
    2. {      
    3.     provider.UpdateUserInfo(info);      
    4. }     
    CreateDataProvider() method doesn't seems to allow nothing as parameter, or am i missing something here? 
     
    I'm using asp.net 1.1 (vb) so some of the syntex is not available, my code for the above would be:
     
    1. Dim provider As IChatDataProvider = Me.CreateDataProvider(nothing) 'It require cutechat.appPortal object as parameter...    
    2.   
    3.   
    4. provider.UpdateUserInfo(info)  
    By specifying "nothing", it "seems" to solve the issue but it does not update the "cutechat4_user" table in database like it used to.
     
     
View Complete Thread