i have designed an ASP site using MS Acesss as my backend database. the
site information is quite important and so my client wants teh password of
teh registered users to change automatically in every 30 days. Once the
password is changed the user will be then informed by manually emailing
the new password to them.
plz let me knwo if i can achieve the above.
Thanking you in advance
Write a little .vbs file using Windows Script Host.
Schedule the VBS file to run every day (using the schedule service/task
scheduler) looking for passwords that are more than 30 days old (you'll need
a date/time field in your user's table). Have it change those records, and
set the date stamp to today. Generate emails, and send them off.
http://msdn.microsoft.com/scripting for help on WSH
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: i have designed an ASP site using MS Acesss as my backend database. the
: site information is quite important and so my client wants teh password of
: teh registered users to change automatically in every 30 days. Once the
: password is changed the user will be then informed by manually emailing
: the new password to them.
: plz let me knwo if i can achieve the above.
: