POST a form array without successful

后端 未结 5 1343
误落风尘
误落风尘 2020-11-21 05:07

I\'m developing an ASP.NET MVC 5 web with C# and .NET Framework 4.5.1.

I have this form in a cshtml file:

@model MyProduct.         


        
5条回答
  •  轮回少年
    2020-11-21 05:31

    using(Html.BeginForm())
    {
      // code here 
    
    }

    While to Post form Data all tags must be included form tag.

提交回复
热议问题