Pulse7
9/4/2017 - 1:58 PM

DropDown example

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; }
    }