I have the following dropdownlist in my view:
@{
    var listado = new List<SelectListItem>()
    {
       new SelectListItem()
       {
           Text ="YES",
           Value ="1"
       },
       new SelectListItem()
       {
           Text = "NO",
           Value = "2"
       }
   };
}
<div class="form-group">
    <label class="control-label">Is it True ?</label>
    @Html.DropDownList("miDropDownList",listado)
</div>
I want to get the selected value 'YES' or 'NO' to do something in the controller like so:
IActionResult ControllerAction(){
  var theValue = dropdownList.SelectedValue //this is pseudocode syntax but you understand I want to get 
                                            //the value
 // with the value I will do something like this: 
  User userinstance = new User {
     Id = 1,
     Name = "john",
     isJohnTall = theValue.Value 
  }
}
I want something simple in other answers I've seen DropDownLists that are bound to models, but I just want to get strings selected in the dropdown and be able to do something with them in the controller.
