Hi 65sametkaya65,
In the Ajax success function use window.location.href.
window.location.href = '@Url.Action("Index", "Home")';
$.ajax({
type: 'POST',
url: '@Url.Action("AjaxCall")',
data: { },
success: function(result) {
window.location.href = '@Url.Action("Index", "Home")';
},
error: function(response){
alert(response.responseText);
}
});