vote up 0 vote down star

I'm trying to populate a dropdown list with a list returned by a query to my object's facade. I've seen a couple examples here but nothing close enough to my use case. Seems like:

<%= Html.DropDownList("User.Affiliate", UserFacade.Instance.SelectAffiliates())%>

should work but doesn't.

flag

What type does SelectAffiliates() return? Is it SelectList? – LukLed Nov 4 at 22:09
Nope...it's an IList. So I'd need to learn how to convert an IList to a SelectList, yes? – justSteve Nov 4 at 23:00
Yeah a select list is the prefered approach within mvc pages. – griegs Nov 5 at 1:31

1 Answer

vote up 1 vote down check

Try using

<%= Html.DropDownList("User.Affiliate", 
    new SelectList(UserFacade.Instance.SelectAffiliates()))%>
link|flag

Your Answer

Get an OpenID
or

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