如何在单击按钮时调用控制器操作并及时发送在下拉列表中选择的值?这是我的 .cshtml 的外观示例。这只是示例,通常我需要在单击按钮时及时从当前视图中收集大量数据。
<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>