Tracking user login details and saving it to a log file |
7/1/2007 11:51:06 | |
| ASPRunnerPro General questions | ||
|
M
minnydiva author
Hi, |
||
|
|
Sergey Kornilov admin 7/2/2007 |
|
I would suggest to create a Log table in your database for this purpose. This table can store logged user name and login date/time. dbConnection.Execute "insert into Log (username, logindatetime) values ('" & Session("UserID") & "', now())"
|
|
|
A
|
agmoraojr 4/9/2008 |
|
hi sergey, I would suggest to create a Log table in your database for this purpose. This table can store logged user name and login date/time. After that you can implement AfterSuccessfulLogin event: dbConnection.Execute "insert into Log (username, logindatetime) values ('" & Session("UserID") & "', now())"
|
|
|
J
|
Jane 4/9/2008 |
|
Hi, |
|