Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi there,
Is there a quick and easy way to get all logged in members in 6.1.6?
Cheers
Moshe
Hi,
Use the method GetAllUsers of Membership and check which are online. Something like this:
var onlineusers = Membership.GetAllUsers().Where(x=> x.IsOnline).ToList();
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Get all logged in members
Hi there,
Is there a quick and easy way to get all logged in members in 6.1.6?
Cheers
Moshe
Hi,
Use the method GetAllUsers of Membership and check which are online. Something like this:
var onlineusers = Membership.GetAllUsers().Where(x=> x.IsOnline).ToList();
is working on a reply...