how to Assign roles to User while creating their account
i am using asp.net built-in membership an开发者_如何学运维d 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.
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);
Please refer to : http://www.asp.net/security/tutorials/assigning-roles-to-users-cs
精彩评论