session tracking in winform

craftit

Member
Joined
Sep 19, 2006
Messages
23
Programming Experience
Beginner
i need to track user sessions in a winform appliication.
Is there any namespace that supports this in winform?
 
If you mean checking logged in windows user, test this:
VB.NET:
[SIZE=2]MsgBox(System.Security.Principal.WindowsIdentity.GetCurrent.Name)
[/SIZE]
 
no, i do not mean logged in windows user.
i have an application designed in winforms and i need to
track users after logging in with the login form i created.
 
Not sure what/where you want to "track".. do you mean you want to log something?
 
lets put it like this, i want to track sessions as done in asp/asp.net.
i want generate customized information based on their log in id.
 
Back
Top