public ActionResult PerformAction3(DummyItem item)
 {
     return Content(
         string.Format("You called PerformAction3, with a submit buttoned rendered with an HtmlHelper, data: id={0} and other={1}", item.Id, item.Other));
 }
 public ActionResult PerformAction2(DummyItem item)
 {
     return Content(string.Format("You called PerformAction2 with: id={0} and other={1}", item.Id, item.Other));
 }