在ASP.NET MVC 2中使用ListBoxFor

时间:2010-06-26 09:44:18

标签: asp.net-mvc-2 html-helper

我正在尝试更新特定组在我的应用程序中的角色。我在我的视图中使用的Group模型附加了一个额外的AllRoles IEnumerable,因此在我看来我可以这样做:

<%: Html.ListBoxFor( model => model.aspnet_Roles, new MultiSelectList( Model.AllRoles, "RoleId", "RoleName" ), new { @class = "multiselect" } )%>

这会按预期生成多个选择下拉列表。但是,从PHP开始,我注意到select的名称没有方括号,也许在ASP.NET中没问题,但在PHP中它是错误的。 现在,如何在提交表单后更新组,更准确地说,我如何读取多个选项的选定值。我需要的是基于我收到的RoleIds将各自的aspnet_Roles添加到我的Group模型。

尝试使用HttpContext.Request.Form["aspnet_Roles"]读取收到的值失败,也很难看。我可以以某种方式使用该模型来获取所需的数据吗?控制器功能:

[AcceptVerbs( HttpVerbs.Post )]
public ActionResult Edit( SYSGroups updatedGroup ) {}

由于

1 个答案:

答案 0 :(得分:1)

选定的ID将作为集合发送:

[HttpPost]
public ActionResult Edit(string[] aspnet_Roles) 
{
    // the aspnet_Roles array will contain the ids of the selected elements
    return View();
}

如果表单包含其他需要发布的元素,您可以更新模型:

public class SYSGroups
{
    public string[] Aspnet_Roles { get; set; }
    ... some other properties
}

并让您的操作方法如下所示:

[HttpPost]
public ActionResult Edit(SYSGroups updatedGroup) 
{
    // updatedGroup.Aspnet_Roles will contain an array of all the RoleIds
    // selected in the multiselect list.
    return View();
}