Hi there
I have a collection of Roles.GetAllRoles() on Membership Providers. Now I have one role "System Administrator" that I would like to remove from that list so I can use in my list. How do I do this?
public void AssignUserToRoles_Activate(object sender, EventArgs e)
{
try
{
AvailableRoles.DataSource = Roles.GetAllRoles();
AvailableRoles.DataBind();
}
catch (Exception err)
{
//
}
}