This question is locked. New answers and comments are not allowed.
I found a easy way to make a checkbox in my MVC View/Controller into a boolean and it will return either True or False.
View:
This defaults to UnChecked
View:
This defaults to UnChecked
<%
= Html.CheckBox("chkNoFearSaveData", Model.CheckBox == false ? false : true )%>
This defaults to Checked
<%
= Html.CheckBox("chkNoFearSaveData", Model.CheckBox == false ? true : false )%>
Controller:
if ( (bool)model.CheckBox )