Would like to ask whether this way is correct or not to call two actions in a begin form
This works fine for me,would like to know whether this is the correct way or not.
I have added formaction="/Controller/Action" in button.
View
@using (Html.BeginForm("FileUpload", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<input type="submit" value="Update" id="btnSubmit" />
<input type="submit" value="Reset" formaction="/Home/Reset" id="btnReset"/>
}