.net - User Web Chat, determine who is online, and targeting specific sessions? -
First of all, I'm using .NET 3.5. I want to create an online chat system for my users. I have found some decent (open source) chat systems that I can use, but there are some features that I want to add. I want to see how many people can see the chat users on their site and allow the chat user to choose the user and start talking to them. The normal user can not always have an account on the site, so I can not pinpoint my user database. I have noticed that other applications allow you to select from the list of online users and start a chat session with them. I'm thinking that I can target with session ID, but can I get it?
You can try to use the property:
Anonymous property is a long-term unique identifier for a non-authenticated user, which can be used to track the user, or to specify the profile properties for that user without having to store data in a session object. By default, anonymous assets are tracked using cookies.
Comments
Post a Comment