Can anyone tell me a way to prompt the user every 30 days to change their password? I will be writing my own security rather than using the standard access one.
Well, if you are going to be storing user passwords in a table, just add a column to that table to store the date last changed (when a user changes their password, update the table with the current date (now function).
Then, when they login each time, check the login table for the date...if it is older than 30 days old, prompt for change.
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.