控制器:
public ActionResult searchGroup(int groep)
{
var returnValue = convertWerkvorm(db.Werkvormens.Where(f => f.GroepenWerkvormID == groep).ToList());
return View(returnValue);
}
Partialview:
@model alina1617.Models.DropDownModel
<h2>Groepen</h2>
<div>
<div><select id="@Html.IdFor(m => m.selectedItem)" name="@Html.NameFor(m => m.selectedItem)">
@foreach (var groepModel in ViewBag.groepen)
{
<option value="@groepModel.id" title="@groepModel.Beschrijving">@groepModel.Naam</option>
}
</select>
<input type="button" id="zoekgroep" value="Zoeken" onclick="location.href='@Url.Action("Create", "WerkvormController")'" />
</div>
</div>
我想在单击按钮时将所选组的ID传递给控制器。我应该使用Jquery还是可以使用与MVC相关的东西?
答案 0 :(得分:0)
function(event)
使用dropdownfor并在Model中添加Selectedvalue属性,并将所有这些放在表单中并使按钮输入类型提交
答案 1 :(得分:0)