How To Handle Multiple Submit Buttons In ASP.NET MVC
Suppose there are more than one submit buttons on one form as shown below.

Here we descibe how to handle multiple submit buttons inside one form.
First of all, give one name for both of your Submit Buttons.

Then on the controller side, use Swirch operator for calling the specific Submit Button as shown below.


By this way, we can resolve this issue.