CheckBoxList in ASP.NET MVC 2.0
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, Can any body tell me how to use checkboxlist in ASP.NET MVC 2.0 Thanks for help
-
Hi, Can any body tell me how to use checkboxlist in ASP.NET MVC 2.0 Thanks for help
An ASP.NET CheckBoxList is rendered as a table an input element and label in the cells so if you want to replicate it
<table>
<% foreach(item in ViewData["MyList"]) { %>
<tr><td> <% Html.CheckBox(...) %> <% Html.Label(...) %> </td></tr>
<% } %>
</table>
I know the language. I've read a book. - _Madmatt