Regarding this line of code:
- using (IChatDataProvider provider = this.CreateDataProvider())
- {
- provider.UpdateUserInfo(info);
- }
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:
- Dim provider As IChatDataProvider = Me.CreateDataProvider(nothing)
-
-
- 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.