Changing password using membership provider
-
Im working with a social network. To change password I use following code
MembershipUser usr=Membership.GetUser(username);
usr.ChangePassword(usr.GetPassword("no answer"), newpassword);But following error occur: Current membership provider is not configure to allow users to retrieve and reset their password. How can I configure?
shahdat
-
Im working with a social network. To change password I use following code
MembershipUser usr=Membership.GetUser(username);
usr.ChangePassword(usr.GetPassword("no answer"), newpassword);But following error occur: Current membership provider is not configure to allow users to retrieve and reset their password. How can I configure?
shahdat
What have you tried ? Did you google the error message ?
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
Im working with a social network. To change password I use following code
MembershipUser usr=Membership.GetUser(username);
usr.ChangePassword(usr.GetPassword("no answer"), newpassword);But following error occur: Current membership provider is not configure to allow users to retrieve and reset their password. How can I configure?
shahdat
-
What have you tried ? Did you google the error message ?
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
It a error from .NET compiler. Im web developer of a social network site. I want to develop how a user reset their password when he forgot it. I require method to change password.
shahdat
-
Im working with a social network. To change password I use following code
MembershipUser usr=Membership.GetUser(username);
usr.ChangePassword(usr.GetPassword("no answer"), newpassword);But following error occur: Current membership provider is not configure to allow users to retrieve and reset their password. How can I configure?
shahdat