Where you keep your password? Is it sort of database (XML, Aceess, MSSQL, MySQL ...)?
In order to change the password usually you prompt your users to enter the old one and then if it matches you change it by using an UPDATE statement. e.g.
VB.NET:
If statement (expression) Then
UPDATE accounts SET Password='" & TextPassowrd.Text & "' WHERE User = '" & loggeduser & "'
End If
This is just a pseudo code but should give you an idea about how it works.
Please provide more info to get more relevant help. Is it web or win project? Do you have the form designed or you are still struggling to start? Please explain what you are trying to do.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.