DropDown example
@Html.DropDownListFor(m=>track.Genre,new SelectList(Model.Genres,"Id","Name"),null,null) public class Genre { public int Id { get; set; } public string Name { get; set; } }