How to bind HTML Drop Down List in MVC Razor view
问题 in my project i'm getting IEnumerable collection, now want to bind this my Html Drop Down list my razor view code is as: @if (Model.LanguageNavigationLinkItem != null) { // drop down list item Collection var ddlItem = Model.LanguageNavigationLinkItem; @Html.DropDownList(ddlItem.ToList(),"-- Select Item --") } i couldn't bind this collection with my drop down list please any one help me. 回答1: Here is an example to bind dropdown using ViewBag . You can also use model to bind dropdown in similar