0
votes
1answer
142 views

drop down list sorting values dynamically

I have a drop list in gridview In which i am selecting a data in dropdown list from database like this Adeel Akram Ali Asif Zeeshan Problem Is that when gridview loads for example with 5 rows for ...
0
votes
2answers
2k views

MVC3 Razor SelectedValue in DropdownListFor

I've the following code for a DropDownListFor and is working ok @Html.DropDownListFor(Function(model) model.Habilitacoes, New SelectList(ViewBag.Habilitacoes, "KeyHL", "DescricaoHL"), New With ...
2
votes
3answers
2k views

Html.DropDownListFor not behaving as expected ASP.net MVC

I am new to ASP.net MVC and I am having trouble getting dropdown lists to work correctly. I have a strongly typed view that is attempting to use a Html.DropDownListFor as follows: ...