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

Members online

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,072
Latest member
trafficcone

Latest Threads

Top