有什么方法可以使用 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)
有什么方法可以让这个操作链接进入 httpPost 方法而不是 httpGet 方法?