gpt4 book ai didi

c# - 如何在单击按钮时将数据从 View 发送到 Controller

转载 作者:行者123 更新时间:2023-12-02 04:59:57 24 4
gpt4 key购买 nike

如何调用 Controller 操作并在单击按钮时及时发送在下拉列表中选择的值?这是我的 .cshtml 的示例。这只是示例,通常我需要在单击按钮时及时从当前 View 中收集大量数据。

<body>
<div>
@Html.DropDownList("Name")
<br />
@Html.DropDownList("Age")
<br />
@Html.DropDownList("Gender")
<br />
@using (Html.BeginForm("FindPerson", "MyController", FormMethod.Post))
{
<input type="submit" value="Find" />
}
</div>
</body>

最佳答案

为了将数据提交给 Controller ,输入必须出现在 <form> 中标签。

例如:

<body>
<div>
@using (Html.BeginForm("FindPerson", "MyController", FormMethod.Post))
{

@Html.DropDownList("Name")
<br />
@Html.DropDownList("Age")
<br />
@Html.DropDownList("Gender")
<br />
<input type="submit" value="Find" />
}
</div>
</body>

关于c# - 如何在单击按钮时将数据从 View 发送到 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17236555/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com