i have a form which is posted using jquery,
i could use regular form submission i suppose.. but is there some way to have my result push a new view and model based on the post results? Someone suggested what i want to do is redirect.
my controller returns:
return View("User/Default", model);
but because i am posting with AJAX this is not working. thanks!