I need to programatically find the users name using C#. Specifically, I want to get the system/network user attached to the current process. I\'m writing a web application t
string user = System.Security.Principal.WindowsIdentity.GetCurrent().Name ;