checkbox checked not appearing as checked in controller
- by user281180
I have the following code in my view
<tr><td><%=Html.Hidden("ProjectID["+(count)+"]",item.ProjectID)%><%=item.ProjectName%></td><td><input type="checkbox" name="Name[<%=count%>]" /></td></tr>
In my controller, the checkboxes value appear false depsite having been checked in on the web page.
how can I correct that?