Ask a Question related to ASP Database, Design and Development.
-
Terry Murray #1
Tracking Logins
I am trying to write an application that will include as one of its
features the ability to track login times (entrance and exit).
I think the whole exercise is rather trivial especially so if the user
actually logs out. What I am not too sure how to go about handling is the
situation that would occur if rather than logging out he/she decides to kill
the browser window or exit the application and visit some other site.
I was thinking perhaps the best way to handle that situation would be to
track the activity of users through Application variables. I have a feeling
it would be possible with Session variables, too, but they depend on cookies
which are not always enabled. Am I correct in going with this approach and
how could I implement it if so?
Thanks in advance
Terry
Terry Murray Guest
-
InDesign tracking vs. Quark tracking?
Hi Anne Marie, I would describe letter, word, and glyph scaling parameters as things the paragraph composer can fuzzy-logic work with. Fuzzy logic... -
Multiple Logins
What would be a good way to login multiple users to different pages depending on their login? From the same form? -
multiple logins?
I guess this is more of a suggestive question. I've got a client that wants to have a member access area, they are extremely concerned however about... -
Secure logins...
Hi. I reaslise this is possibly considered off-topic, but I want to pick as many expert brains as possible. Apologies in advance.... I have a... -
Miltiple Logins
We are running Netware5. We are trying to eliminate the Windows logon box from appearing after the Novell logon box in Windows XP. Any Ideas? -
grw #2
Re: Tracking Logins
There is no reliable way to track an 'exit'
You are perhaps best to mark all users as logged off after a period of
inactivity (usually session.timeout) when their sessionid / IP is no longer
detected
(ie now() > (last detected + session.timeout )
"Terry Murray" <tgmurray@rogers.com> wrote in message
news:O093b.287568$4UE.15647@news01.bloor.is.net.ca ble.rogers.com...kill> I am trying to write an application that will include as one of its
> features the ability to track login times (entrance and exit).
> I think the whole exercise is rather trivial especially so if the user
> actually logs out. What I am not too sure how to go about handling is the
> situation that would occur if rather than logging out he/she decides toto> the browser window or exit the application and visit some other site.
> I was thinking perhaps the best way to handle that situation would befeeling> track the activity of users through Application variables. I have acookies> it would be possible with Session variables, too, but they depend on> which are not always enabled. Am I correct in going with this approach and
> how could I implement it if so?
>
> Thanks in advance
> Terry
>
>
grw Guest
-
wizard@example.com #3
Re: Tracking Logins
Terry,
As the other poster has mentioned, there is no concept
of logout time.
Perhaps you could sell a change in the definition to:
"contiguous periods of user activity"
If this flies, then you can set up some rules suitable
to the analysis and process your db or logs.
An example of a rule:
"if new ip address for user, then new login, previous activity was logout"
Bob
Terry Murray wrote:-->
> I am trying to write an application that will include as one of its
> features the ability to track login times (entrance and exit).
> I think the whole exercise is rather trivial especially so if the user
> actually logs out. What I am not too sure how to go about handling is the
> situation that would occur if rather than logging out he/she decides to kill
> the browser window or exit the application and visit some other site.
> I was thinking perhaps the best way to handle that situation would be to
> track the activity of users through Application variables. I have a feeling
> it would be possible with Session variables, too, but they depend on cookies
> which are not always enabled. Am I correct in going with this approach and
> how could I implement it if so?
>
> Thanks in advance
> Terry
------------------------------------------------------------------
FREE DOWNLOADS
iis bandwidth protection -- [url]http://coldlink.com/[/url]
iis password protection -- [url]http://wanderware.com/[/url]
------------------------------------------------------------------
...
wizard@example.com Guest



Reply With Quote

