Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Unique identifier ?

    Hi there
    I have following problem - in my web application i want to track every user
    logged currently in the system so far so good until now I've used SessionID
    until i've found following problem - When I open new browser window from
    currently opened browser - File/New/Window the sessionID is the same!:) may
    be this is normal but turns my logic upside down :) can anyone give me some
    advise about what unique identifier to use per logged user ? i've tried to
    add a cookie with value GUID in my login page when i'm in other page it
    dissapears.

    Thanks in advance
    Ivaylo Guberov Guest

  2. Similar Questions and Discussions

    1. Unique Form inserting into many tables using unique id
      I have a Registration Form that have 3 steps. The data could be inserted into many (4) tables. Some data corresponding to a one table (the main or...
    2. Unique object identifier?
      Hello, I am having problems with some object-oriented code in PHP. I suspect that it has to do with references, ie. that PHP copies my object...
    3. string as identifier
      Hello, This is an extract form help file: `The dot operator uses the name of an object on its left side and the name of a property or variable on...
    4. Computer Identifier
      I need to retrieve from both Mac and Windows computers some bit of information that is unique to each individual machine. It need not be the same...
    5. row identifier
      Hello! I need advice on how to identify a row with particular field value? I have a table with 3 fields: id, title, date. I need to know...
  3. #2

    Default Re: Unique identifier ?

    Just make sure you get the GUID into a session variable from your home page,
    then you have it throughout the site.

    --

    OHM ( Terry Burns )
    . . . One-Handed-Man . . .
    If U Need My Email ,Ask Me

    Time flies when you don't know what you're doing

    "Ivaylo Guberov" <IvayloGuberov@discussions.microsoft.com> wrote in message
    news:EAB7FF24-5C0D-4D9D-8065-3631A01F672F@microsoft.com...
    > Hi there
    > I have following problem - in my web application i want to track every
    user
    > logged currently in the system so far so good until now I've used
    SessionID
    > until i've found following problem - When I open new browser window from
    > currently opened browser - File/New/Window the sessionID is the same!:)
    may
    > be this is normal but turns my logic upside down :) can anyone give me
    some
    > advise about what unique identifier to use per logged user ? i've tried to
    > add a cookie with value GUID in my login page when i'm in other page it
    > dissapears.
    >
    > Thanks in advance

    One Handed Man \( OHM - Terry Burns \) 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