Click here to Skip to main content
15,887,832 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am newbie in vb.net. my first project employee database with employee log in. I allot emp as separate log in with individual password. I also facilitate password changing option. It can be display separate form. I want help for how to changed password to save in database. I can use single data table in employee(password also to the same table). please some one help me. thank U........
Posted
Comments
DANAOS_master 19-Oct-11 6:34am    
It would help a lot if you could rewrite your post with correct English.

http://www.codeproject.com/Questions/298491/How-to-change-password-from-ms-access-in-vb-net-20 ............ exactly what you need
 
Share this answer
 
wire a sql query to update employee table for password like

SQL
update employee_table set password_column = newpassword where employee_id = employeeid and password = oldpassword
--employeeid can be take form session
--oldpassword can be taken from changepassword page you are providing
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900