I have a website I'm developing and have roles setup with one group "admin" that I want to be able to select a user and display information about that user...name, password, security question and so on. What would be the easiest way to get this done? Also, I have modified the default login steps to include a few additional requirements, such as first and last name, company, etc. I would like the "admin" group to be able to view all this information quickly and easily so if a customer from another company calls us saying they fired that person, we can remove the user based on their actual name, not username.
EDIT Can I do something like:
MembershipUser user = System.Web.Security.Membership.GetUser(RegisterUser.UserName);
user.Comment = fnametxt.Text.ToString() + " " + lnametxt.Text.ToString() + " " + companytxt.Text.ToString();
System.Web.Security.Membership.UpdateUser(user);
to store the additional info then recall the user.Comment from the sql database when needed?