Beispiel #1
0
 protected void Button为用户添加新角色_Click(object sender, EventArgs e)
 {
     Roles.AddUserToRole(DropDownList用户.Text, ListBox所有角色.Text);
     ListBox用户所属角色.DataSource = Roles.GetRolesForUser(DropDownList用户.Text);
     ListBox用户所属角色.DataBind();
     ListBox所有角色.DataSource = Roles.GetAllRoles();
     ListBox所有角色.DataBind();
 }
Beispiel #2
0
 protected void 将用户从该角色中删除_Click(object sender, EventArgs e)
 {
     Roles.RemoveUserFromRole(DropDownList用户.Text, ListBox用户所属角色.Text);
     ListBox用户所属角色.DataSource = Roles.GetRolesForUser(DropDownList用户.Text);
     ListBox用户所属角色.DataBind();
 }
Beispiel #3
0
 protected void DropDownList用户名_SelectedIndexChanged(object sender, EventArgs e)
 {
     ListBox用户所属角色.DataSource = Roles.GetRolesForUser(DropDownList用户.Text);
     ListBox用户所属角色.DataBind();
 }