如何在C#中存储多个selction / Dropdownlist

时间:2017-01-10 22:34:59

标签: c# asp.net-mvc formcollection

我是MVC和C#的新手以及我试图让用户从列表中多选城市并稍后将其存储到数据库的项目。我已经阅读了几篇关于此的帖子,但无法弄清楚如何修复我的。我可以存储我表格中的所有其他项目:

@using ( Html.BeginForm( "AddProjectInfo", "Insert", FormMethod.Post, new {
        enctype = "multipart/form-data"
        @id = "insertform", @class = "form-horizontal col-md-4 col-md-offset-4"
    } ) )

但是对于城市,它只存储第一个选定的项目而不是全部。你可以帮我解决这个问题吗?

以下是我的观点:

<div class="form-group">
        <label class="col-sm-3 col-form-label text-left">City * </label>
        <div class="col-sm-9">
            @Html.DropDownList(
             "City",
             new SelectListItem[] {
                    new SelectListItem {
                        Text = "Cambridge", Value = "Ca"
                    },
                   new SelectListItem {
                        Text = "Oxford", Value = "Ox"
                    },
                    new SelectListItem {
                        Text = "Sheffield", Value = "Sh"
                    }                
             },
         "--Select Cities--",
    new {
        @class = "form-control",
        required = true,
        multiple = "multiple"
    }
        )
    </div>
</div>

这是我的控制器:

[HttpPost]
    public ActionResult Insert( FormCollection frm ) {
        Models.ProjectInfo p = new Models.ProjectInfo();
        String[] Cities= frm.GetValues( "City" );
        p.ContractId = frm[ "ContractId" ];
        p.Year = Convert.ToDecimal( frm[ "Year" ] );
        p.City = Cities.ToString();
        p.Location = frm[ "Location" ];
        // Insert into the Database
            AddProjectInfo( p );
            ViewBag.ResponseMessage = "Submitted !";

    }

我知道如何使用JavaScript,但不知道C#如何处理它。 谢谢你!

2 个答案:

答案 0 :(得分:0)

@payment

答案 1 :(得分:0)

我会事先告诉你我在没有测试的情况下编写这些示例,但它只是为了让您大致了解如何正确处理下拉列表/列表框。另外,最后,我将把链接留给我的GitHub,我在那里有一个简单的项目,我前段时间专门为这样的案例写过。

所以,让我们开始吧。为简单起见,我宁愿在Controller中创建下拉列表。例如:

假设您有一个模型:

public class Person
{
    public string Name { get; set; }
    public string Surname { get; set; }
    public string City { get; set; }

    [NotMapped]
    public SelectList CitySelectList { get; set; }
}

请注意CitySelectList NotMapped,因为我们不希望它连接到数据库。 CitySelectList的值将通过City

保存在数据库中

然后你有一个行动方法:

public ActionResult Insert()
{
    var person = new Person { CitySelectList = new SelectList(
    new List<SelectListItem>
        {
            new SelectListItem { Text = "Cambridge", Value = "Ca" },
            new SelectListItem { Text = "Oxford", Value = "Ox" },
            new SelectListItem { Text = "Sheffield", Value = "Sh" }
        }, "Value", "Text") };

    return View(person);
}

在这里,您可以看到我正在创建Person的实例并将其传递给View。这是使用预定义值加载视图的最佳方法。在这种情况下,最重要的预定义值是下拉列表。

View看起来或多或少会像这样:

@model Person

@using (Html.BeginForm())
{
    @Html.AntiForgeryToken()

    <div class="form-group">
        @Html.LabelFor(m => m.Name, htmlAttributes: new { @class = "control-label" })
        @Html.EditorFor(m => m.Name, new { htmlAttributes = new { @class = "form-control" } })
        @Html.ValidationMessageFor(m => m.Name, "", new { @class = "text-danger" })
    </div>

    <div class="form-group">
        @Html.LabelFor(m => m.Surname, htmlAttributes: new { @class = "control-label" })
        @Html.EditorFor(m => m.Surname, new { htmlAttributes = new { @class = "form-control" } })
        @Html.ValidationMessageFor(m => m.Surname, "", new { @class = "text-danger" })
    </div>

    <div class="form-group">
        @Html.LabelFor(m => m.City, htmlAttributes: new { @class = "control-label" })
@* Important *@
        @Html.EditorFor(m => m.CitySelectList, new { htmlAttributes = new { @class = "form-control", multiple = "multiple" } })
@* /Important *@
        @Html.ValidationMessageFor(m => m.City, "", new { @class = "text-danger" })
    </div>

}

正如您所看到的,我通过编辑器传递2个htmlAttributes来调用下拉列表。最重要的是multiple = "multiple",因为这是定义我将在页面中显示的项目列表类型的那个。怎么样?通过专门为处理它而构建的编辑器模板。如果您不熟悉其概念和用法,可以查看this website以获取开始。编辑器模板如下所示:

@model SelectList

@{
    var htmlAttributes = HtmlHelper.AnonymousObjectToHtmlAttributes(ViewData["htmlAttributes"]);
}

@if (!htmlAttributes.ContainsKey("multiple"))
{
    @Html.DropDownListFor(m => m.SelectedValue, Model.SelectListItems, htmlAttributes)
}
else
{
    @Html.ListBoxFor(m => m.SelectedValues, Model.SelectListItems, htmlAttributes)
}

此特定编辑器模板的一个细节:您是否注意到我正在为SelectedValue创建下拉列表/列表框?当你获得所有值时,这可能会引起一些麻烦,但你可以用POST方法处理这个问题:

[HttpPost]
public ActionResult Insert(Person person)
{
    person.City = person.CitySelectList.SelectedValues;
    // Some code goes here
    return View();
}

那应该是它。但是,正如我之前所说,我有一个工作代码here,所以你可以运行并看看它是如何工作的。还有一些来自GitHub right here的代码的解释,如果你需要的话。