Click here to Skip to main content
15,881,757 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i really confuse, i want to add the new users automatically after they signing up to customer role
i found a line of code to add but i can't find it in my project. i don't know why
here the code that i found.
Roles.AddUserToRole(CreateUserWizard1.UserName, "Customer");


but when i start writing the createuserwizard, there are no CreateUserWizard1, so i use this:
Roles.AddUserToRole((sender as CreateUserWizard).UserName, "Customer");


but that's the problem, it doesn't work, the user can sign up, but not assigned to customer role. please anyone can help me.

sory my english is not good enough.
thanks..
Posted
Comments
NMehta83 3-Nov-10 9:18am    
Have you enter your Roles into "aspnet_Roles" in this master table?

1 solution

To assign the newly created user to a role you use the following code:

C#
Roles.AddUserToRole("username", "rolename");


Depending on how you create the user you must find the username of the newly user and just pass it into the above method.
Don't forget to create the role first.
Good luck
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900