i have two options
One
<%= Html.CheckBox("postType", false, new { @id = item.int_PostTypeId.ToString() })%>
Second
<input type="checkbox" name="postType" value="<%= item.int_PostTypeId.ToString() %>
1st question: what is differenct between these two method of check box declaration.
2nd question: and how can we get value of checked checkbox?