I am currently having an issue with multiple action buttons being in the same form.
The first button would perform verification while the second button would save pr
[HttpPost, ActionName("OrginalActionName")] [FormValueRequired("nameONE")] public ActionResult WhateverYouWantONE(type name) { code... } [HttpPost, ActionName("OrginalActionName")] [FormValueRequired("nameTWO")] public ActionResult WhateverYouWantTWO(type name) { code... }