Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. Multiple Logins
      What would be a good way to login multiple users to different pages depending on their login? From the same form?
    3. 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...
    4. 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...
    5. 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?
  3. #2

    Default 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...
    > 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
    >
    >

    grw Guest

  4. #3

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139