web-dev-qa-db-ja.com

エリアを使用したMVC Html.BeginForm

MVCエリアを使用しており、「Test」というエリアにあるビューで、次のメソッドに投稿するフォームを作成したいと思います。

area: Security
controller: AccountController
method: logon

Html.BeginFormでこれを実現するにはどうすればよいですか?できますか?

48
Mariko

これを試して:

Html.BeginForm("logon", "Account", new {area="Security"})
76
Nam Le

デフォルトのmvc4テンプレートで動作させる方法を知りたい人のために

@using (Html.BeginForm("LogOff", "Account", new { area = ""}, FormMethod.Post, new { id = "logoutForm" }))
88
mosesfetters

エリア、コントローラー、アクションをRouteValuesとして指定してみてください

@using (Html.BeginForm( new { area = "security", controller = "account", action = "logon" } ))
{
   ...
}
7
tvanfosson

これをHTML属性のある領域に使用します

@using (Html.BeginForm(
      "Course", 
      "Assign", 
      new { area = "School" }, 
      FormMethod.Get, 
      new { @class = "form_section", id = "form_course" })) 
{

   ...

}
4
SamJackSon
@using (Html.BeginForm("", "", FormMethod.Post, new { id = "logoutForm", action = "/Account/LogOff" }))
                {@Html.AntiForgeryToken()
                    <a class="signout" href="javascript:document.getElementById('logoutForm').submit()">logout</a>
                }
3
Mohammad Karimi

Ajax BeginFormの場合、これを使用できます

Ajax.BeginForm("IndexSearch", "Upload", new { area = "CapacityPlan" }, new AjaxOptions { HttpMethod = "POST", InsertionMode = InsertionMode.Replace, UpdateTargetId = updateTarget }, new { id = "search-form", role = "search" })
0
Sumesh Es