Only update (refresh) PartialView after submit click
问题 I am having trouble only updating the contents of my partial view after clicking a input type="submit" button. I wish to only refresh the partial view and fill it with the updated model (controller code), not refresh the full page. However at the moment I've only been able to view my updated model property in these situations: Refresh the full page after submit (by return View() in the controller) Image 1 Display only the Partial view after submit (by return PartialView() in the controller)