I'm trying to redirect my application from ajax call but it isn't working. Inspecting browser's NetWork i could see that the result is 200 - OK but the view isn't changing.
$.ajax({
type: "GET",
url: "Index",
data: { codCliente: codCliente, numProcesso: numProcesso }
});
public ActionResult Index(string codCliente = null, string numProcesso = null)
{
return View();
}