Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个创建用户向导控件
然后我添加了一个事件“创建用户”
protected void CreateUserWizard1_CreatedUser(object sender, EventArgs e) { }
当我想使用这个分配一个角色时:
Roles.AddUserToRole(CreateUserWizard1.UserName, "Members");
它说角色在当前上下文中不存在。
由于该角色不存在,您可以先使用 Visual Studio 中的 ASP.NET 配置工具创建它,或者在后面的代码中使用这样的一行:
Roles.CreateRole("Members");