Right now I am using the 3.5 Framework to get the users first and last name, and email address.
username = System.DirectoryServices.AccountManagement.UserPrincipal.Current.GivenName + " " +
System.DirectoryServices.AccountManagement.UserPrincipal.Current.Surname;
I had to dumb the project down so it just uses the 2.0 Framework, and AccountManagement is not included.
Is there a simple way to get these things from AD with the 2.0 Framework. I have yet to find anything simple.