I want to know what roles a logged in user belongs to without having to check the user against all possible roles (i.e. using Page.User.IsInRole())
I want to know what roles a logged in user belongs to without having to check the user against all possible roles (i.e. using Page.User.IsInRole())
Roles.GetRolesForUser()
Or
Roles.GetRolesForUser(String) if not targeting the currently logged in user.