Change Password and Forget Password without Membership

Posted by Rama Sagar under ASP.NET MVC on 12/9/2013 | Points: 10 | Views : 3169 | Status : [Member] [MVP] | Replies : 1
How to enable change Password and Forget Password in MVC4 Application without using Membership??
Here is the Model class..i want to send email to the user with new password...

public class LoginModel
{
[Required(ErrorMessage = "Please Enter Email Address")]
public String userName { get; set; }

[Required(ErrorMessage = "Please Enter Password")]
public String Passsword { get; set; }
}

ramasagar


Responses

Posted by: Kmandapalli on: 12/9/2013 [Member] Silver | Points: 25

Up
0
Down
Hi,

Please go through the follow link:
http://stackoverflow.com/questions/17020776/i-m-implementing-a-forgot-password-functionality-in-asp-mvc4-but-cant-successful

or perform the following operations:

1. When the user enters his username and password check whether they exist in database o not.I exists then navigate him to the respective page.

2. If not display an error message.

3. Put two links or buttons saying "Forgot Password" and "Change Password".

4. When userclicks on Change Password as k him to enter his UserName, old password and new password. Then Update the password with new password with where condition setting with old passowrd and UserName.

5. For Forgat Password,
ask him to enter his UserName. Based on UserName write select query.

Note:
Here the UserName has unique key, which implies it should not allow duplicates.


Mark as answer if satisfied...


Regards,
Shree M

Mark as answer if satisfied...

Regards,
Shree M.

Kavya Shree Mandapalli

Rama Sagar, if this helps please login to Mark As Answer. | Alert Moderator

Login to post response