How to use CheckBoxList and DropdownList in MVC4 Razor

后端 未结 2 1086
广开言路
广开言路 2021-01-17 00:37

I have to use @Html.CheckBoxListFor<> or @Html.DropdownListFor<>.I am confused about how to use these helper class in View whild I am using List for Model Binding.

2条回答
  •  没有蜡笔的小新
    2021-01-17 01:02

    It depend on your UI requirement. if you need a drop down list then use that.

    CheckBoxList is not out of the box helper, it is a custom helper.

    You can find more details of the helper (CheckBoxList) from here Code Project

    Regarding Drop down please refer to MSDN. It can be overloaded in multiple ways.

    Here are the available ASP.NET MVC helpers

提交回复
热议问题