[Solved] how to fill 2nd combobox with asp.net mvc ajax
[ad_1] One of the options is to to make Ajax request to action which will return your list items public virtual JsonResult GetCountryStates() { return Json( new { new List<SelectListItem>() {YOUR ITEMS HERE} }); } Then in your Ajax callback body put code like that function (data) { //var selValue; data = $.map(data, function (item, … Read more