How do I call the second action Index
below
public ActionResult Index()
{
}
[HttpPost]
public ActionResult Index(FormCollection collection, string nextButton)
{
}
from an ActionLink
? I am trying the code below without success:
@Html.ActionLink("Buy Now", "Index", "Store", new {edition = "std", nextButton = ""}, new Dictionary<string, object> {{ "class", "button medium light" }})
Thanks.