I have this in my View:
@Html.DropDownList("dropBox", (List<SelectListItem>)ViewBag.SelectedListItems)
I would like to get the selected value from the dropBox and post it back to the controller using like this:
@Html.ActionLink("Add","AddAction", "AddController", new {@accessID = *here*})
here is where I'd just like to add "dropBox".SelectedValue, but how do I do this?
How else could I post back the SelectedValue of the dropBox?