0
votes
2answers
577 views
How to not use ASP.Net Membership Security Question and Answer for custom password recovery?
Hi,
I don't want to have the security question and answer feature that ASP.Net Membership Provider gives, but I DO want to enable a lost/forgotten password page.
This page would be where a …
2
votes
How to not use ASP.Net Membership Security Question and Answer for custom password recovery?
What I ended up doing was the following
public string ResetPassword(string email)
{
var m_userName = Membership.GetUserNameByEmail(email);
var m_user …
