我刚刚注意到Html.CheckBox(“foo”)生成2个输入而不是一个,有人知道为什么是这样吗?

<input id="foo" name="foo" type="checkbox" value="true" />
<input name="foo" type="hidden" value="false" /> 

当前回答

在2020/11和。net 5预览版中,有一个拉请求应该使这种行为可控。谢谢大家!

不管怎样,如果有人觉得它有用,.NET Core 3.0的Alexander Trofimov的回答:

public static IHtmlContent CheckBoxSimple(this IHtmlHelper htmlHelper, string name)
{
    TextWriter writer = new StringWriter();

    IHtmlContent html = htmlHelper.CheckBox(name);
    html.WriteTo(writer, HtmlEncoder.Default);

    string checkBoxWithHidden = writer.ToString();

    string pureCheckBox = checkBoxWithHidden.Substring(0, checkBoxWithHidden.IndexOf("<input", 1));
    return new HtmlString(pureCheckBox);
}

其他回答

使用Contains,它将与两个可能的post值一起工作:"false"或"true,false"。

bool isChecked = Request.Form["foo"].Contains("true");

当我使用WebGrid时,我发现这确实引起了问题。WebGrid上的排序链接将由加倍的查询字符串或x=true&x=false转换为x=true,false,并在复选框中导致解析错误。

我最终使用jQuery在客户端删除隐藏字段:

    <script type="text/javascript">
    $(function () {
        // delete extra hidden fields created by checkboxes as the grid links mess this up by doubling the querystring parameters
        $("input[type='hidden'][name='x']").remove();
    });
    </script>

手动方法是这样的:

bool IsDefault = (Request.Form["IsDefault"] != "false");

如果未选中复选框,则不提交表单字段。这就是为什么隐藏字段中总是有假值的原因。如果你不选中复选框,表单仍然会有隐藏字段的值。这就是ASP。NET MVC处理复选框值。

如果您想确认这一点,请在表单上放置一个复选框,而不是Html。隐藏,但带有<input type="checkbox" name="MyTestCheckboxValue"></input>。不选中复选框,提交表单并查看服务器端发布的请求值。您将看到没有复选框值。如果你有隐藏字段,它将包含MyTestCheckboxValue项的假值。

在2020/11和。net 5预览版中,有一个拉请求应该使这种行为可控。谢谢大家!

不管怎样,如果有人觉得它有用,.NET Core 3.0的Alexander Trofimov的回答:

public static IHtmlContent CheckBoxSimple(this IHtmlHelper htmlHelper, string name)
{
    TextWriter writer = new StringWriter();

    IHtmlContent html = htmlHelper.CheckBox(name);
    html.WriteTo(writer, HtmlEncoder.Default);

    string checkBoxWithHidden = writer.ToString();

    string pureCheckBox = checkBoxWithHidden.Substring(0, checkBoxWithHidden.IndexOf("<input", 1));
    return new HtmlString(pureCheckBox);
}