Hi there,
What do you mean by resetting the password? In an HTML form control? Or the password you may have stored in a database?
In the first case, simply set the form field's value to '' using client side JavaScript.
For the second scenario, you'll need to write some ASP/ADO code that performs an update in the database, like:
UPDATE Users SET Password = 'DefaultPassword' WHERE Users.ID = 123
Search this forum, or Google for more ideas on how to write the code that performs the update.
HtH
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
|