I've got a Bootstrap modal window that has an ActionLink to call a method in the controller and to do stuff:
@Html.ActionLink("Process Data", "ProcessData", "Controller", null, new { @class = "btn btn-success" })
However, I want to do it so that when the user presses this ActionLink (the Save Changes button), I want the modal to close automatically after they press it.
Is there a way to directly call another jQuery/Javascript method once ProcessData finishes executing? This also isn't a POST method if it matters.