How can i get Boolean value or the true or false from controller to a Checkbox in View using this:
@Html.CheckBox("condition", @ViewData["Condition"])
or
<input type = "checkbox" checked = "**true or false?**">
I have this in my Controller..
public ActionResult Member(string sortOrder, string filter, string searchString, int? page, **bool? condition = false**)
and in my view is like this
please help me for this...