public ActionResult Edit(int? id)
{
ViewBag.Role = new SelectList((from t in db.Roles where t.RoleID != 1 && t.RoleID != 2 select t), "RoleID", "RoleName");
if (id == null)
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
User user = db.Users.Find(id);
if (user == null)
{
return HttpNotFound();
}
return View(user);
}
ViewBag.Role 是将所有角色值生成到多选复选框中。
<div class="form-group">
@Html.Label("Roles", htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.DropDownList("Role", null, htmlAttributes: new { @multiple = "multiple", @class = "form-control" })
</div>
</div>
<script type="text/javascript">
$(function () {
$('#Role').multiselect({
includeSelectAllOption: true
});
});
MultiSelect CheckBox 基本上如下图所示。
这是我的问题,我如何预先检查用户已经拥有的角色?例如,x 用户有一个角色 Manager,因此在编辑页面时 Manager 复选框将被选中。