I want to redirect to the action Index, controller Admin after the post from ajax.
$.post("/Admin/Create", { inputs: inputs, columnsCount: columnsCount, });
How can I change this code to redirect it to the index page after success?
I want to redirect to the action Index, controller Admin after the post from ajax.
$.post("/Admin/Create", { inputs: inputs, columnsCount: columnsCount, });
How can I change this code to redirect it to the index page after success?
use the 3rd parameter of post
$.post(
"/Admin/Create",
{ inputs: inputs, columnsCount: columnsCount, }
function() {
window.location.replace("/Admin/index");
}
);
$.post("/Admin/Create", {
inputs: inputs,
columnsCount: columnsCout
}, function(){
window.location.href = "http://..../Admin/Index";
});