I have the following line in a Controller
ViewData["UsersOnLineNow"] = Membership.GetNumberOfUsersOnline().ToString();
I am logged in as an Administrator but the above is returning a value of 0, verified by QickWatch. I was expecting a value of 1.
I also have the following in the Controller
ViewData["RegisteredUsers"] = Membership.GetAllUsers().Count.ToString();
This is returning the correct value of 2, myself included.
Anyone else had problems in this area?
MSDN:
Tip: You can try setting your UserIsOnlineTimeWindow to a higher value. Default value is 15 minutes, in the following example I've set it to 60.