| Author |
User timing in a session
|
sk mehrotra
Ranch Hand
Joined: Oct 27, 2005
Posts: 34
|
|
Hi, I am using a JSP login page. How do I keep track of the user timing from the logon to the logoff. I would like to store this information in a database. Can you help me on this. Thanks [ February 27, 2007: Message edited by: sk mehrotra ]
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56554
|
|
Unless I'm missing something in your question this is fairly trivial. Store a timestamp in the session when the user logs in, compute the elapsed time when they log out, and store it in the DB. The interesting part comes when: what if they don't log out? (Hint: session listener)
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: User timing in a session
|
|
|