回答:
これにより、IDが追加されます。
ASP.NET MVC 5以下:
<% using (Html.BeginForm(null, null, FormMethod.Post, new { id = "signupform" }))
{ } %>
ASP.NET Core:フォームでタグヘルパーを使用して、IDを設定するための奇妙な構文を回避できます。
<form asp-controller="Account" asp-action="Register" method="post" id="signupform" role="form"></form>
プロジェクトにコードを追加したので、より便利です。
HtmlExtensions.cs:
namespace System.Web.Mvc.Html
{
public static class HtmlExtensions
{
public static MvcForm BeginForm(this HtmlHelper htmlHelper, string formId)
{
return htmlHelper.BeginForm(null, null, FormMethod.Post, new { id = formId });
}
public static MvcForm BeginForm(this HtmlHelper htmlHelper, string formId, FormMethod method)
{
return htmlHelper.BeginForm(null, null, method, new { id = formId });
}
}
}
MySignupForm.cshtml:
@using (Html.BeginForm("signupform"))
{
@* Some fields *@
}
System.Web.Mvc.Html (中System.Web.Mvc.dll)フォームを開始するように定義される: - 詳細
BeginForm(このHtmlHelper htmlHelper、文字列actionName、文字列
controllerName、オブジェクトrouteValues、FormMethodメソッド、オブジェクトhtmlAttributes)
このように使用する必要があることを意味します:
Html.BeginForm(string actionName、string controllerName、object routeValues、FormMethod method、object htmlAttributes)
したがって、MVC 4で機能しました
@using (Html.BeginForm(null, null, new { @id = string.Empty }, FormMethod.Post,
new { @id = "signupform" }))
{
<input id="TRAINER_LIST" name="TRAINER_LIST" type="hidden" value="">
<input type="submit" value="Create" id="btnSubmit" />
}