我正在创建一个自定义注册表单,仅供管理员在此注册表单中使用,管理员可以添加用户并在网站中授予他们角色,因此我将此模型用于定义来自
public class AddUserToRoleModels
{
[Required]
[Display(Name = "User name")]
public string UserName { get; set; }
[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
[Required]
[DataType(DataType.Password)]
[Display(Name = "Confirm password")]
[Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }
[Required]
[Display(Name = "Select Role")]
public string Roles { get; set; }
}
并在类Function中创建此方法以添加用户并赋予其角色
public class Functions
{
public void AddUserToRole(string UserName,string PassWord,string Role) {
if (!WebSecurity.UserExists(UserName))
WebSecurity.CreateUserAndAccount(UserName, PassWord);
if (!Roles.GetRolesForUser(UserName).Contains(Role))
Roles.AddUsersToRoles(new[] { UserName }, new[] { Role });
}
}
然后我创建了这个控制器
public class AddUserToRoleController : Controller
{
UsersContext db = new UsersContext();
public ActionResult Create()
{
ViewBag.RoleId = new SelectList(db.Roles, "RoleId", "RoleName");
return View();
}
[HttpPost]
public ActionResult Create(AddUserToRoleModels model)
{
if (ModelState.IsValid)
{
Functions ob = new Functions();
ob.AddUserToRole(model.UserName, model.Password, model.Roles);
return RedirectToAction("Index");
}
ViewBag.RoleId = new SelectList(db.Roles, "RoleId", "RoleName");
return View(model);
}
}
并为create action controller
创建视图@model SeniorProject.Models.AddUserToRoleModels
@{
ViewBag.Title = "Create";
}
<h2>Create</h2>
@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
<legend>AddUserToRoleModels</legend>
<div class="editor-label">
@Html.LabelFor(model => model.UserName)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.UserName)
@Html.ValidationMessageFor(model => model.UserName)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Password)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Password)
@Html.ValidationMessageFor(model => model.Password)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.ConfirmPassword)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.ConfirmPassword)
@Html.ValidationMessageFor(model => model.ConfirmPassword)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Roles)
</div>
<div class="editor-field">
@Html.DropDownList("RoleId", String.Empty)
@Html.ValidationMessageFor(model => model.Roles)
</div>
<p>
<input type="submit" value="Create" />
</p>
</fieldset>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}
当我尝试添加新用户并给他角色时,用户插入数据库但没有角色,我认为因为我正在尝试从@Html.DropDownList("RoleId", String.Empty)
获取角色,这是列表和我的方法它需要角色的字符串参数,我尝试从该列表中选择所选项目,但没有工作以太,所以请帮助...
答案 0 :(得分:0)
@Html.DropDownListFor(model => model.RoleID, ViewBag.RoleID, "")
或类似的东西。
您还可以将列表作为selectList放在viewmodel中,然后将其称为Model.RoleIDs
答案 1 :(得分:0)
试试这个:
public ActionResult Create()
{
ViewBag.Roles = new SelectList(db.Roles, "RoleId", "RoleName");
return View();
}
在视图中:
@Html.DropDownListFor(model => model.RoleId, ViewBag.Roles as IEnumerable<SelectListItem>, "Select a role" )
在发布操作if(model.RoleId == 0)
中,您不要选择任何角色。
答案 2 :(得分:-1)
using (UsersContext db = new UsersContext()){ var tmp = db.Roles.ToList(); ViewBag.RoleId = new SelectList(tmp, "RoleId", "RoleName"); }
在视图
中@Html.DropDownListFor(model => model.RoleID, (SelectList)@ViewBag.RoleId)