Reputation: 7571
How can I get unique session ID for every unique user who logs in ?? I'm using asp.net/c#
Thanks in anticipation
Upvotes: 0
Views: 7692
Reputation: 66882
ASP.Net provides Session functionality - and many objects provide access to SessionID
This is quite sophisticated and can be used across multiple machines in a webfarm if needed.
See:
For logged in users, it might also be worth looking at:
Upvotes: 4