Asp.Net MVC4 Display CheckboxList

前端 未结 2 469
耶瑟儿~
耶瑟儿~ 2020-12-28 21:34

I have searched a lot and spend 3 days only for searching and trying different technique (on stackoverflow etc) but I find no solution for implementing checkboxlist in asp.n

2条回答
  •  自闭症患者
    2020-12-28 22:23

    Answer suggested by @balexandre above works great. However, I used following HTML Extension for CheckBoxList.

    1. CheckboxList in ASP.net MVC4
    2. Source Code:HTML Extension Helper method (Github)

    The Major advantage of using this helper method is clean code and better readability. E.g.

    @Html.CheckBoxListFor(model => model.SelectedItems, Model.AllItems)
    

提交回复
热议问题