[HttpPost] public ActionResult ProcessForm(Customer obj,string save,string cancel) {if(!string.IsNullOrEmpty(save)){ViewBag.Message = "Customer saved successfully!";}if (!string.IsNullOrEmpty(cancel)){ViewBag.Message = "The operation was cancelled!";}return View("Result",obj); }