Hi, I need some help. I have a page with multiple forms, but when I post a form it sends the wrong form. My form template looks like this, so what do I have the change to make it work?
<form method="post" class="form" action="@GetString("Form.Action")" enctype="multipart/form-data" id="@GetString("Form.HtmlId")" onsubmit="@GetString("Form.OnSubmit")">
@GetString("Form.SystemFields")
@{
foreach (LoopItem field in GetLoop("Fields"))
{
@((field.GetString("Field.Type") != "Hidden" && !field.GetBoolean("Field.IsButton")) ? field.GetString("Field.Name") : string.Empty);
@field.GetValue("Field.Control")
}
}
</form>