I have 2 DNN sites. I need to synchronize user table while registering user in one.
ie. if a user register at site 1, that user will be available in site 2.
So I need to use the query behind
UserController.CreateUser(userInfo).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have to create entries in
UserProtaltable, so for example, you have two portals with id 0 and 1. If user registers to portal 0,UserController.CreateUserwill create entry inUserPortaltable with portal 0 and new userid. Once user is created, you have to create same kind of entry for portal 1 and new userid in same table.Let me know if you have any other question on this