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