I want to create a form which has no default action in it.
I tried doing Html.BeginForm(null, null, FormMethod.Post, new { enctype = "multipart/form-data", id = "AppForm" })
but it assigns the current action method name to the action part of the form and renders it as
<form class="ng-pristine ng-valid" id="AppForm" action="/Portal/on/application" enctype="multipart/form-data" method="post" novalidate="novalidate">
</form>
I have two separate buttons on the form and I am following this article http://stackoverflow.com/questions/442704/how-do-you-handle-multiple-submit-buttons-in-asp-net-mvc-framework
to create a form but not sure how to create one which has no action.
Thanks