vote up 2 vote down star
1

Hi,

How to dynamically bind data to <%Html.Dropdownlist.... in asp.net MVC?

Regards, Ambika

flag

4 Answers

vote up 0 vote down

link textThe link below provides 2 methods to bind dropdownlist. Bind Dropdownlist

link|flag
vote up 0 vote down

cN I FOUND THE SOURCE CODE TO EXAMPLE HOW TO BIND dropdownlist FROM MVC

link|flag
vote up 0 vote down

thanks man i search about it long time :)

link|flag
vote up 7 vote down

Just pass the correct IEnumerable as the typed model or ViewData. Try something like this (out of my head):

<%= Html.DropDownList(string.Empty, 
    "myDropDownList",  
    new SelectList((IEnumerable)ViewData["stuff"], 
        "DescriptionProperty", 
        "ValueProperty")) 
%>

With that drop down list helper in MVC, you do not really "bind" data to it in the way it is done in the old ASP.NET.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.