I have a model:
public class DocumentModel { public int TypeID { get; set; } public List DocumentTypes { get; set; } }
On your model I would have another string -
public string Selected{ get; set; }
then in your view :
@Html.DropDownListFor(model => model.Selected, new SelectList(Model.DocumentTypes, "Value", "Text"))