Mono Support Confusion with registeration process (new user) 

Viewed 12717 time(s), 7 post(s), 12/5/2012 4:46:49 PM - by super
12/5/2012 4:46:49 PM
6018 Reputation 709 Total posts

1) If any user registers, on the click event of "Create Account" the register page doesn't tell the user to check email or the account is not activated yet or anything. So the user remains confuse, what's going on and obviously user will try to login wich account he/she just created and then it gives message that your account is not activated yet.

How to fix this problem ?

2) How to change settings to that no activation is needed ? User can get activated automatically as soon as he/she creates an account.

1
12/6/2012 9:15:59 AM
3016 Reputation 428 Total posts

Hi,

1. Can you send us some screenshots for your issue. You can always change the behaviour of registration process by attaching to memberhip editors events on the registration page.(AccountCreating, AccountCreated)

2. Membership editor has ActivationRequired property. Set it to true in order to avoid account activation.

Regards.

2
12/10/2012 11:45:34 AM
2793 Reputation 345 Total posts

>2. Membership editor has ActivationRequired property. Set it to true in order to avoid account activation.
</br>you mean "false" I guess

3
12/10/2012 12:01:46 PM
2793 Reputation 345 Total posts

1) the issue is that the demo site doesn't have some default handler there to show a more informative message after sign up like the mono company site does when you sign up (not social login) at support

4
12/10/2012 12:23:30 PM
3016 Reputation 428 Total posts

2. Yes set it to false, sorry, my mistake.
1. As writen above, you can always use membership editors events and perhaps call the Message.Show("title", description) methods to show more prominent information to user.

Regards.

5
12/10/2012 9:34:45 PM
6018 Reputation 709 Total posts

1. As writen above, you can always use membership editors events and perhaps call the Message.Show("title", description) methods to show more prominent information to user.

IMARUSIC,

Could you please help with code and show how to do this ?

I need activation required but I need to display message once anybody registers saying "your account has been created but you need to activate your account so check your mail"

6
12/10/2012 10:10:10 PM
2218 Reputation 300 Total posts

Hello,

As Ivan mentioned you can use the AccountCreationCompleted event for that, for example:

ctlMembershipEditorEmployer.AccountCreationCompleted += new EventHandler(ctlMembershipEditor_AccountCreationCompleted);
Finally call the Message.Show method, example below:
void ctlMembershipEditor_AccountCreationCompleted(object sender, EventArgs e)
{
    MonoSoftware.MonoX.Message.Show("This is an example message");           
}
Please note that ctlMembershipEditor is the MembershipEditor control.

Regards,
Mario

7
This is a demo site for MonoX. Please visit Mono Software for more info.