Hey all
I've got a question for everyone, and I was hoping I could get some opinions on how you would implement this.
I'm looking to implement password/login type functionality to my site, but I want to try and do this without using Sessions.
What I've done so far is create the following table
End_user_loggedin
- EU_pk (User's id)
- tempPass (random 9 digit number)
- timeLogged (DateTime field, default Now())
I know that I could just tack onto every querystring and form the tempPass & EU_pk fields and process it whenever I need to, but I also want to be able to log the user out after 15 minutes of inactivity.
The main problem is that I am using Access for this database, so that severely limits my options.
Any ideas?
thanks in advance.
leo
I've got a question for everyone, and I was hoping I could get some opinions on how you would implement this.
I'm looking to implement password/login type functionality to my site, but I want to try and do this without using Sessions.
What I've done so far is create the following table
End_user_loggedin
- EU_pk (User's id)
- tempPass (random 9 digit number)
- timeLogged (DateTime field, default Now())
I know that I could just tack onto every querystring and form the tempPass & EU_pk fields and process it whenever I need to, but I also want to be able to log the user out after 15 minutes of inactivity.
The main problem is that I am using Access for this database, so that severely limits my options.
Any ideas?
thanks in advance.
leo