我在我的代码中添加了这些角色。
if (!Roles.RoleExists("Administrators"))
Roles.CreateRole("Administrators");
//create intern roles if they don't exist
if (!Roles.RoleExists("Intern"))
Roles.CreateRole("Intern");
我在 IIS 中的应用程序一切正常。但是,现在我想删除这两个角色。有没有办法删除它们?
我试图在 IIS 中回收我的网络应用程序,似乎没有用。
首次创建角色时存储在哪里?只是好奇。
请指教。
谢谢