Reputation: 641
i am using asp.net built-in membership and role provider.
In my application Admin Create account for user.
currently i am assigning roles by going to asp.net configuration website.
kindly tell me how to add an extra step of Select Role in creat user account API.
Thanks.
Upvotes: 5
Views: 6662
Reputation: 1364
Please refer to : http://www.asp.net/security/tutorials/assigning-roles-to-users-cs
Upvotes: 1
Reputation: 68506
Are you just asking how to assign a User to a Role?
Roles.AddUserToRole(userName, roleName);
And to remove a role:
Roles.RemoveUserFromRole(userName, roleName);
Upvotes: 8