Post values in a Listbox without being selected

0

Is it possible to post the values of a Listbox without being selected?

My ListBox:

@Html.ListBoxFor(m => m.SelectedCatequistas, new MultiSelectList(ViewBag.SelectedCatequistas, "PessoaID", "Nome"), htmlAttributes: new
                           {
                               @class = "form-control",
                               Size = 15,
                               style = "width: 100%;"
                           })
    
asked by anonymous 17.05.2016 / 17:41

0 answers