html.actionLink を使用してデータを投稿する方法はありますか?
public ActionResult Test()
{
return View();
}
[HttpPost]
public ActionResult Test(TestModel test)
{
return View(test);
}
そして私の見解では...
@Html.ActionLink("ClickMe","Test", new {Test1 = "actionLink", Test2 = "actionLinkDidThis"}, FormMethod.Post)
このアクション リンクを httpGet メソッドではなく httpPost メソッドで取得できる方法はありますか?