How can I get the Values of a CheckBoxList Made through Below code in asp.net MVC?
Posted
by SAHIL SINGLA
on Stack Overflow
See other posts from Stack Overflow
or by SAHIL SINGLA
Published on 2010-05-24T09:33:11Z
Indexed on
2010/05/24
9:41 UTC
Read the original article
Hit count: 294
asp.net-mvc
|AJAX
I have Made the CheckboxList like this?
<%foreach(ListItem m in bootcamp.STPs.ProjectManagement.Controllers.MemberController.JALLMembers()){%>
<label for=""><%= m.Text %></label>
<input id="Mana" type="checkbox" value="<%= m.Value %>" name="chkbx" />
<%}%>
How can I get the Values of selected checkboxes through ajax script in controller?
I am using Asp.net MVC?
© Stack Overflow or respective owner