1. how to handle multiple users at a single time? Learn about
JSP Sessions. It's pretty much handled for you.
2. how to handle two different persons with same login name and password in the same time? Same answer as with question #1. (Two people shouldn't have the same login and password, but I guess that's beside the point.)
3. A page expiration takes place and a new place dispalyed after the time expiration without user request If you want this to happen without user input, it will require either Javascript or a META REFRESH tag.
If you're only allowing so much time for the
test, you will want to store the user's start time (the session object is one good place to store this) and compare that with the current server time on each post.
[ February 16, 2005: Message edited by: Ben Souther ]