public ActionResult UpdatePartial() { var model = new PartialModel {Text = "was updated"}; return View("Partial", model); }
public ActionResult ViewRequest() { var model = new PartialModel{Text = " Text from the action"}; return PartialView("Partial", model); }