Is there some easy way to handle multiple submit buttons from the same form? For example:
<% Html.BeginForm(\"MyAction\", \"MyController\", FormMethod.Pos
You could write:
<% Html.BeginForm("MyAction", "MyController", FormMethod.Post); %> <% Html.EndForm(); %>
And then in the page check if the name == "Send" or name == "Cancel"...