0

代码:

索引.cshtml

<div class ="">
    <input id="date" type="checkbox" />Date<br /><br />
</div>

页眉.cshtml

@Html.ActionLink("Add", "Action", "Controller", new 
                                {date = ??}, new
                {
                    @class = "hidden",
                    @Id = "tasks"
                })

如何在来自另一个cshtml页面的cshtml页面中的日期参数(true(如果选中)或false(如果未选中))中分配复选框值?

4

1 回答 1

0

为复选框使用表单和 html 助手

像这样

@using (Html.BeginForm(action, controller, FormMethod.Post))
{
     @Html.CheckBoxFor(model => model.date)
     <input type="submit" value="Submit" />
}

然后在您的发布操作中,日期将在您发布的模型中可用。

于 2013-07-03T08:38:35.667 回答