I am using a ASP.NET CreateUserWizard to registering users. I wanted user to not automatically log after registration until they login manually.

    <asp:CreateUserWizard ID="RegisterUser" runat="server" EnableViewState="false" RequireEmail="false"
DisableCreatedUser="true" LoginCreatedUser="false" OnCreatedUser="RegisterUser_CreatedUser">

In here I have set the DisableCreatedUser="true" and LoginCreatedUser="false" in order to not logged the user after registration until they logged in as CreateUserWizard.DisableCreatedUser Property describes.

Any ideas about the reason this settings not working will be appreciate.

Thanks

link|improve this question

74% accept rate
What is "not working" about it? Are you editing the correct web.config? – CodeCaster Oct 3 '11 at 9:49
currently user login automatically after registration – huMpty duMpty Oct 3 '11 at 10:02
feedback

1 Answer

up vote 0 down vote accepted

I did that by adding FormsAuthentication.SignOut() in the OnCreatedUser. that works !!!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.