MVCエリアを使用しており、「Test」というエリアにあるビューで、次のメソッドに投稿するフォームを作成したいと思います。
area: Security
controller: AccountController
method: logon
Html.BeginFormでこれを実現するにはどうすればよいですか?できますか?
これを試して:
Html.BeginForm("logon", "Account", new {area="Security"})
デフォルトのmvc4テンプレートで動作させる方法を知りたい人のために
@using (Html.BeginForm("LogOff", "Account", new { area = ""}, FormMethod.Post, new { id = "logoutForm" }))
エリア、コントローラー、アクションをRouteValuesとして指定してみてください
@using (Html.BeginForm( new { area = "security", controller = "account", action = "logon" } ))
{
...
}
これをHTML属性のある領域に使用します
@using (Html.BeginForm(
"Course",
"Assign",
new { area = "School" },
FormMethod.Get,
new { @class = "form_section", id = "form_course" }))
{
...
}
@using (Html.BeginForm("", "", FormMethod.Post, new { id = "logoutForm", action = "/Account/LogOff" }))
{@Html.AntiForgeryToken()
<a class="signout" href="javascript:document.getElementById('logoutForm').submit()">logout</a>
}
Ajax BeginFormの場合、これを使用できます
Ajax.BeginForm("IndexSearch", "Upload", new { area = "CapacityPlan" }, new AjaxOptions { HttpMethod = "POST", InsertionMode = InsertionMode.Replace, UpdateTargetId = updateTarget }, new { id = "search-form", role = "search" })