Someone knows how to create a ListBox in ASP.NET MVC 3 who will pass the selected checkboxs, for example, for the controller? I'm thankful for your help.
I have created this:
@Html.ListBox("selTipoVinculoTipoConvenio", new SelectList(Model.TIPO, "ID_TIPO_CONVENIO", "TXT_DESCRICAO"), new { @id = "selTipoVinculoTipoConvenio", @name = "selTipoVinculo", @class = "select-multiple w-464", multiple = "multiple", @data_width = "464" })
But now I need to create a filter with the selected checkboxs...
Just know a little bit about HTML Helpers of C# Razor.