Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

asp.net 3.5 password recovery control in an mvc app?

Can I use the asp.net 3.5 Password Recovery control in an MVC application?

We need to provide password retrieval capability for our MVC app and I would like to use the password recovery control which only works with a web form app.

like image 928
rob Avatar asked May 06 '10 16:05

rob


People also ask

How to reset password in ASP net c#?

Run the "ForgotPassword. aspx" page and enter username or email id and click on submit button.It will send reset password link on your email id. Check your email and click on the reset password link. You will be redirected to the "ResetPassword.


1 Answers

Unlike Login and Logout, the Password Recovery feature does not come implemented in a brand new ASP.NET MVC project, however, adding this feature to an ASP.NET MVC project is actually pretty easy as the Membership class already has the core functionality built-in.

I've posted in my blog an explanation on how I did it:

http://www.hectorcorrea.com/blog/Password-Recovery-in-an-ASP.NET-MVC-Project.aspx

like image 64
Hector Avatar answered Sep 23 '22 22:09

Hector