基于this link我创建了一个角色,但是我收到了以下错误:
命名空间testProject中不存在名称空间RoleExists。
角色和我的代码如下所示:
namespace testproject.Roles
{
public partial class ManageRoles : System.Web.UI.Page
{
protected void CreateRoleButton_Click(object sender, EventArgs e)
{
string newRoleName = RoleName.Text.Trim();
if (!Roles.RoleExists(newRoleName)) // Create the role
Roles.CreateRole(newRoleName);
RoleName.Text = string.Empty;
}
}
}
答案 0 :(得分:0)
角色存在歧义:替换
if (!Roles.RoleExists(newRoleName)) // Create the role
与
System.Web.Security.Roles.RoleExists(newRoleName))