vote up 1 vote down star

I have a set of four ASP.NET roles that I have been trying to delete - they never want to die.

Simply put, I've deleted them successfully by using the website administrator tool and by running the stored procedure:

exec aspnet_Roles_deleteRole '/', 'CameraOwner', 1;

My application name is '/'. I see the records getting deleted from the database. No one is using it. I refresh my role management page - it is gone. However, the next time my application restarts - and sometimes after a page refresh, the deleted roles get re-inserted.

Added: If I delete the roles and do an iisreset: the roles are still deleted. As soon as I hit my application (even with a wget that doesn't have any pre-existing cookies) the roles get re-inserted.

Has anyone experienced this before?

UPDATE: Found my problem. Yet Another Forum.NET had linked Roles. Everytime you reloaded the application, it recreated the missing linked roles.

flag

80% accept rate
I wasn't aware that I did, but an hour of trial & error helped me find this solution. Post your comment as an answer, and I will vote you up. – Jason Kealey Oct 5 at 17:19
Done. I'm glad you found the problem. Those type of things are really frustrating. – Greg Oct 5 at 18:13

1 Answer

vote up 1 vote down check

How did the roles get into your system in the first place? Do you have any code that automatically adds roles? Can you try changing the DB name to make sure another system isn't hitting the same database?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.