I'm using SQL Role Provider and to get a list of users within the 'Admin' Role, I'm using the below code:
string[] list = Roles.GetUsersInRole("Admin");
This gives me a list of AD username.
How do I get the users full name (i.e. First Name + Last Name).
Any advice appreciated!