Click here to Skip to main content
15,878,852 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
Hi ,I need to discover a method by which I can set a unique id for a particular client system ,when user login next time ,system will check that id again. I dont want to use cookies for that ,as user can delete can delete the cookies. Is there some way by which we can get a unique Id for a single system.
Posted
Comments
ZurdoDev 3-Jun-13 16:37pm    
Have them login.

1 solution

Cookies are your answer.
When they connect, write the unique Id to a cookie, and retrieve it when they next connect.
 
Share this answer
 
Comments
Asp_Learner 4-Jun-13 12:35pm    
Thanks for the answer ,but that I have already mentioned that ,I don't want to use cookies ,as end user can delete the cookies whenever he/she wants.
_Maxxx_ 4-Jun-13 17:18pm    
Ok - I was suggesting cookies because that's your only real option without asking the user to log in or give some information to your web app to identify themselves/ their computer.
I guess you are using it for some sort of licensing scheme so don't want users accessing from multiple machines?
Best you could do is a combination of cookie, ip address, user ID and date/time

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900