我有一個Html表單,它有一個提交按鈕,在表單內部,我有多個部分需要單獨提交。由於Html不支持嵌套表單,我該如何解決它?並且每個部分都需要在提交之前進行驗證。如何提交一個在asp.net中的另一個表單內的表單mvc
<% using (Html.BeginForm("actionName", "controllerName", FormMethod.Post))
{ %>
<form id="frmHomeContact" method="post" >
-- a partial view is rendered here
<div class="grid-2-12">
<input style="width: 100%;" type="button" title="save" value="save" />
</div>
</form>
<%}%>
讓我知道如果問題不清楚。
'jQuery.post()'=) – DontVoteMeDown