Getting values of check-box from formcollection in asp.net mvc

怎甘沉沦 提交于 2019-12-02 07:13:28

问题


I viewed some topics here but I still have a problem with getting values from checkboxes.

Part of Model :

public Dictionary<Language, bool> TargetLanguages { get; set; }

Part of View :

    <div class="editor-label">
        <label for="TargetLanguages">select target languages</label>
    </div>
    <div class="editor-field">
        <form>
            @foreach (var item in Model.TargetLanguages)
            {                    
                @Html.CheckBox("TargetLanguages["+item.Key.Name+"]", item.Value)
                @item.Key.Name
            }
        </form>
    </div>

Part of Controller :

    [HttpPost, ActionName("AddDictionary")]
    public ActionResult AddDictionary(FormCollection collection)
    {
     ...
    }

And the problem is I don't get any trace of TargetLanguages in my FormCollection. I tried CheckBoxFor but it wasn't help. I tried write check-box manually also.

EDITED : Okay, I just noticed where the problem was. I've got messed up markers and that was the reason why I can't get data from FormCollection.


回答1:


Create all the checkboxes with the same name. In this sample I'm using 'SelectedTargetLanguages'.

@using (Html.BeginForm())
{
    foreach (var item in Model.TargetLanguages)
    {
        <label>
            @Html.CheckBoxFor(m => m.SelectedTargetLanguages, item.value)
            @item.KeyName
        </label>
    }
    <br/>
    @Html.SubmitButton("Actualizar listado")
}

Then, in your action the parameter must be an array of strings like this:

public ActionResult AddDictionary(string[] selectedTargetLanguages)

Note that the name of the argument is the same name of the checkboxes. (It works even with the different casing).

You should use explicit arguments like this, rather than the generic FormCollection. Anyway, if you use FormCollection, you shpuld also receive the array.




回答2:


I have asked same type of question previously. Please check the following links

MVC3 @Html.RadioButtonfor Pass data from view to controller

MVC3 @html.radiobuttonfor

I think this might helps you.



来源:https://stackoverflow.com/questions/17544444/getting-values-of-check-box-from-formcollection-in-asp-net-mvc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!