I've got this in a View:
<form method="post" action="../MasterData/SaveRoad">
...
<input type="text" name="description" maxlength="100">
@Html.DropDownList("concessions")
...
And in a controller, this:
public ActionResult SaveRoad()
{
string description = Request["description"].ToString();
// code to get the dropdownlist selected value??
...
Now, I'm getting the description using the Request but how can I get the selected value of the dropdownlist?