Я предполагаю, что в вашем контроллере у вас есть действие, после этого используйте location.href
, чтобы перенаправить туда, где находится ваше действие.
$(document).on('click', '.functionName', function() {
swal({
title: "Are you sure?",
type: "info",
showCancelButton: true,
confirmButtonColor: "#2196F3",
confirmButtonText: "Yes, assign it!",
closeOnConfirm: false,
showLoaderOnConfirm: true,
}, function() {
$.ajax({
type: "post",
url: "User/Create",
ajaxasync: true,
success: function() {
swal("Assigned!", "User has been created!", "success");
location.href = "/User/Create";
},
error: function(data) {
swal("Oops", "Something went wrong!", "error");
}
});