我一直在尝试弄清楚如何使用 ActionLink 使选定复选框的列表起作用。我想我需要用 JavaScript 在客户端做一些事情,但找不到相关的代码。
下面的代码使用提交按钮完美地工作,将选定的 id 作为 id 数组发回,但我需要在带有其他按钮的页面上使用它。
// the view
@foreach (var station in Stations)
{
<input type="checkbox" name="selected" value="@station.StationId" />
}
<input type="submit" value="Save" />
//Controller stub
public ActionResult Action(string [] selected)
我已经坚持了几个小时,所以也许我看错了。
PS。我在这里阅读和学习了很多小时后的第一篇文章。