Posts by Alexandre N. • 144 points
1 post
-
4
votes3
answers1799
viewsA: What a difference between Dropdownlistfor and Dropdownlist
Let’s take two examples: @Html.DropDownListFor( x => x.EquipamentoId, new SelectList(Model.Equipamentos, "Id", "Text") ) and: @Html.DropDownList( "EquipamentoId", new…