I have a webpage that a user logs into to. Now I want to provide the ability for a user to change their password using the ChangePasswork Control. The control does work as described here ChangePasswork Control for non-authenticated users. But I want to the behavior for authenticated users.

I'm fairly new to asp so this could be a simple question but exactly how do you "authenticate" a user?

link|improve this question
feedback

1 Answer

According to the docs, the control works for both authenticated and non-authenticated users. Changing a users password programmatically is very straight forward. Take a look at the MembershipProvider and MembershipUser classes. You can validate a user using: MembershipProvider.ValidateUser To authenticate them use: FormsAuthentication.SetAuthCookie MembershipUser has a method: ChangePassword. If you are new to all this, read introduction to membership

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.