Sreedhar Danturthi
Sreedhar Danturthi

Reputation: 7571

Associating a unique session id with every unique user in asp.net/c#

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

Answers (1)

Stuart
Stuart

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

Related Questions