【发布时间】:2014-05-03 08:46:09
【问题描述】:
在我看来:
<input type="checkbox" name="chb" value="True" checked="checked">
在我的控制器中:
[HttpPost]
public ActionResult Pesquisar(bool chb)
未勾选复选框时的错误:
参数字典包含参数“chb”的空条目 不允许可空类型“System.Boolean”用于方法的类型 'System.Web.Mvc.ActionResult Search (System.String, System.String, Boolean)' in ...
【问题讨论】:
标签: c# asp.net-mvc