asp.net mvc - How to remove Roles -
i added these roles in code.
if (!roles.roleexists("administrators")) roles.createrole("administrators"); //create intern roles if don't exist if (!roles.roleexists("intern")) roles.createrole("intern");
everything works fine app in iis. however, want remove both of these roles. there way remove them?
i tried recycle web app in iis, didn't seem work.
where roles stored when first created? curious.
please advise.
thanks
this has been answered here
roles.removeuserfromroles
Comments
Post a Comment