How can I get the results from a JQUery Multi-select dropdownlist as called per an mvc3/razor?
http://abeautifulsite.net/blog/2008/04/jquery-multiselect/
Please try this to get selected values
public ActionResult Index(MyViewModel model, FormCollection collection) { string selectedValues=collection["SelectedValues[]"]; //here you get comma separated values return View(model); }