A common beginner question is - How to handle multiple submit buttons in
ASP.NET MVC?
In web forms this is quite straightforward because all you need to do is
write the Click event handler of the respective buttons. However, in ASP.NET MVC
you need to rely on the plain HTML and / or JavaScript to deal with the
situation. To that end this article illustrates four ways of handling multiple
submit buttons.
The following code uses a simple...