Index
以下の2番目のアクションを呼び出すにはどうすればよいですか
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" }})
ありがとう。