asp.net mvc 3 pre-select Html.DropDownListFor not working in nerd dinner

后端 未结 5 1960
一向
一向 2020-12-31 07:19

Learning about dropdown lists, Im trying to add a RSVP create page for nerddinner as in Scott Gu\'s blog with a Html.DropDownListFor listing available dinners.

I ca

5条回答
  •  一整个雨季
    2020-12-31 08:02

    The SelectList constructor you're using is supposed to provide the selected value, but you are providing the selected text. You may want to try:

        int selected = 2;
    

提交回复
热议问题