我有一个带有提交按钮的 Html 表单,在表单内部,我有多个需要单独提交的部分。由于 Html 不支持嵌套表单,我该怎么做呢?而且每个部分都需要在提交之前进行验证。
<% 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>
<%}%>
如果问题不清楚,请告诉我。