I have a dropdown list like below. Data is bound using viewbag.
<div class="col-md-4">
<h2 style="color: #2f6207">dfdfDestination</h2>
@Html.DropDownList("Destination", new SelectList(ViewBag.Destination, "regCde", "Destination", "Destination"))
</div>
Now I want to send the selected value from the dropdown list to a specific controller. I use jQuery and ajax to do this. It sends the value. But while querying value get null. I have no idea. Is there any other way to do this?
public ActionResult MscHome(string mydestination)
{
return View();
}