Optgroup drop-down support in MVC - Problems with Model Binding

后端 未结 3 1268
悲哀的现实
悲哀的现实 2021-02-08 03:58

I wonder if anyone can shed some light on this problem..

I\'ve got an option group drop-down for selecting a person\'s ethnicity – however it’s not storing the value in

3条回答
  •  庸人自扰
    2021-02-08 04:21

    Your select doesn't have a name attribute and so when you submit the form the selected value is not sent to the server. You need to add a name:

    select.GenerateId(name);
    select.MergeAttribute("name", name);
    

提交回复
热议问题