我如何调用Index
下面的第二个动作
public ActionResult Index()
{
}
[HttpPost]
public ActionResult Index(FormCollection collection, string nextButton)
{
}
从一个ActionLink
?我正在尝试下面的代码但没有成功:
@Html.ActionLink("Buy Now", "Index", "Store", new {edition = "std", nextButton = ""}, new Dictionary<string, object> {{ "class", "button medium light" }})
谢谢。