コントローラー アクションにポストバックしたい achor タグがあります。
@using (Html.BeginForm("ActionName","Home",FormMethod.Post))
{
<div class="toolbar_button">
@{
var Route = Url.Action("ActionName", "Home");
var Anchor = MvcHtmlString.Create(String.Format("<a href=\"\"><img src=\"../../Content/Images/image.png\"></img>stringname</a>"));
}
@Anchor
</div>
}
定義したコントローラー関数があります
[HttpPost]
public ActionResult ActionName(viewModel)
{
}
アンカータグをクリックするたびに、このアクションにはなりません。
何か案は?