I have a dropdownlist in my View:
@Html.DropDownListFor(m => m.APtTitleData.apt, (IEnumerable<SelectListItem>)ViewBag.apt, "-Select Apt-", new { id = "SelectedAPt", name= "SelectedAPt" })
and I have a button in the same View
<a href="@Url.Action("Edit", "APtTitle", new { id = Model.APtTitleData.aPtId, SelectedAPt = "???" })">GO</a>
How do I pass the value of the dropdown to my controller (Edit)? I'm trying to get the value to the button, but I'm not sure this is the right way. Any other idea?