YAFLogo

Posted by: rai - Monday, 29 February 2016 13:33:03
One issue is that when I try to update a profile from the outside the [b][i]Membership.UpdateUser(user)[/i][/b] only [b]yaf_prov_membership[/b] table is updated and not [b]yaf_user[/b] table. The property I am updating in this case is the Email property.

Posted by: tha_watcha - Saturday, 5 March 2016 17:41:09
Use that method.. [code=csharp]UserMembershipHelper.UpdateEmail(userID, email);[/code] This will update the membership and the yaf user table

Posted by: rai - Tuesday, 8 March 2016 13:37:53
Thanks!