Is there some easy way to handle multiple submit buttons from the same form? For example:
<% Html.BeginForm(\"MyAction\", \"MyController\", FormMethod.Pos
For each submit button just add:
$('#btnSelector').click(function () { $('form').attr('action', "/Your/Action/); $('form').submit(); });