PDA

Click to See Complete Forum and Search --> : ways to identify client


ufjessey
Feb 8th, 2000, 09:56 PM
I am using vb-cgi to develop web ap.
BUT find no good ways to identify clients.
(to identify who is connecting now)

Several ways to do this:
(1)cookie
(2)ip
(3)session variables in ASP
(4)generate an unique key

ways (1)(2) are not good ...
(1)cookie can be disabled in client
(2)client maybe access via proxy

way(4) is not very smart

Only session variables could be good one, but
only be used in ASP.

Who get better idea besides session variables?

Thanks very much.

Feb 9th, 2000, 12:19 AM
Hidden Form Fields
Database
?can you use url data in cgi?

Feb 9th, 2000, 09:03 PM
Most of the time i use cookies in combination with session var's

Cookies so they don't have to log in all the time.


------------------

Vincent van den Braken
EMail: azzmodan@azzmodan.demon.nl
ICQ: 15440110 (http://www.icq.com/15440110)
Homepage: http://www.azzmodan.demon.nl

ufjessey
Feb 9th, 2000, 09:29 PM
Cookie is not good when used in shop cart.
If browser disable cookie, user cannot shop.
For security reason, some users don't like cookie.
Is there any way to get user cpu# or disk#?
The bad thing is cgi only runs on server side.
I really don't like to use ASP for session variables.

Let's figure out!