tags:

views:

33

answers:

2

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?

+1  A: 

use the 3rd parameter of post

$.post(
    "/Admin/Create", 
    { inputs: inputs, columnsCount: columnsCount, }
    function() {
        window.location.replace("/Admin/index");
    }
);
harpax
Thanks a lot, it really helped me!
A: 
$.post("/Admin/Create", {
    inputs: inputs,
    columnsCount: columnsCout
}, function(){
    window.location.href = "http://..../Admin/Index";
});
Crozin