I have a dropdownlist that is simply a list of strings (salutations). When I submit the form, the field is an empty string no matter what value is selected. In firefox, it works exactly as expected...but not in IE. <tr> <td>Salutation : </td><td><%= Html.DropDownList("Salutation", new SelectList(Salutations.SalutationList, Model.Salutation), "")%></td> </tr>

Any help is appreciated.

link|improve this question
I faced this problem today with html.dropdownlist. The resolution was similar (use the long form of SelectList). – fjxx May 10 '11 at 21:17
feedback

1 Answer

Fixed by doing this instead.

<tr>
    <td>Salutation : </td><td><%= Html.DropDownList("Salutation", new SelectList(Salutations.SalutationList.Select(x => new { value = x, text = x }), "value", "text", Model.Salutation), "")%></td>
</tr>
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.