我有以下表格
<form name="SearchForm" method="post" id="SearchForm" action="/Search/">
和下面的按钮
<input type="button" onclick="javascript:document.SearchForm.submit();" class="btn-leftsearch">
单击此按钮时,表单提交并调用此方法
[HttpPost]
public ActionResult Index(string querystring)
{
return View();
}
当然查询字符串为空。我想将查询字符串或最好是代表表单中字段的其他内容传递给控制器。我试过在表单标签中使用 action 属性。我试图将数据添加到按钮中的 onclick 方法中。没有任何工作。我想做的就是传递一些这样的数据
Search?pri=all&amenity=pool etc
在控制器中我会有类似的东西
[HttpPost]
public ActionResult Index(string pri, List<string> amenities)
{
...
}
有人可以告诉我如何将这些数据传递给视图吗?