[home]  [scripts]  [news]  [forums]  [feedback] 
Home
...a journey into a lost mind. Don't suppose you found it?
Who Is Online.  (id:1502 ) (4541 hits)
Description:
This script will show a list of users that are "online" according to the AspNet Membership Provider Model. 
Code:
Dim mc As MembershipUserCollection = Membership.GetAllUsers

lblUsersOnline.Text = ""
For Each u As MembershipUser In mc
If u.IsOnline Then
    lblUsersOnline.Text += u.UserName & ", "
End If
Next
 
Created:
6/27/2007 3:02:00 PM 
Created By:
Curt 
Download URL:
 
Category:
ASP.NET/VB.Net 
Sample URL:
 
Updated:
7/4/2007 12:50:00 PM 
RSS Subscriptions
Advanced Script Search

Keyword(s)


Category