Change Password

S

shapper

Hello,

How can I change the password of a current logon user at runtime using
the ASP.NET 2.0 Membership?

Thanks,
Miguel
 
M

Mark Fitzpatrick

System.Web.Security.MembershipUser user =
System.Web.Security.Membership.GetUser(Page.User.Identity.Name);

if (user != null)

user.ChangePassword(oldPassword,newPassword);



If you aren't prompting the user to enter a password you'll need to reset it
first like so

user.ChangePassword(user.ResetPassword(),newPassword);
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Check password answer 1
Password Answer 2
Get user email 1
Check is user is authenticated 1
Membership 2
Membership Provide Code 1
Membership 2
Clear all tables (Membership, Profile, Users, ...) in SQL 2005 1

Top