I have a little problem. I use the Html.DropDownListFor helper to render a dropdown list to the client.

But I can't set the selected value in dropdown list.

<%= Html.DropDownListFor(model => Model.CalculationClassCollection, 
new SelectList(Model.CalculationClassCollection, "ID", "Name",  3 ), 
new { id = "ddCalculationClass" })%>

Anybody can help me?

link|improve this question

37% accept rate
feedback

2 Answers

up vote 3 down vote accepted

If the SelectList is not a member of my Model, I'd use <%= Html.DropDownList("listBoxID", new SelectList(Model.CalculationClassCollection, "ID", "Name", 3 ))%>

link|improve this answer
Thank you! It works! – user295541 Apr 20 '10 at 13:26
feedback

It is one of the overloaded methods. I think it is the method with a parameter something like default. Sorry I am not in front of dev PC right now so I can't tell you exactly which method it is.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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