Click here to Skip to main content
15,867,308 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

I want to implement account confirmation feature in my project. I am referring below url to make the things happen.
http://www.asp.net/web-forms/overview/security/create-a-secure-aspnet-web-forms-app-with-user-registration,-email-confirmation-and-password-reset[^]


Since I am very new to this feature I am not sure, how to use my own database with above tutorial?

below are the lines which are responsible to create new user and saving information to DefaultConnection database.
C#
var manager = Context.GetOwinContext().GetUserManager<applicationusermanager>();
var user = new ApplicationUser() { UserName = Email.Text, Email = Email.Text };
            IdentityResult result = manager.Create(user, Password.Text);


Please help me how to use this feature to my project using my database?
Kindly, let me know if I am unable to explain my issue properly.

Thanks,
Posted
Updated 24-Nov-14 14:34pm
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900