I have this action in my controller
public ActionResult TestItemLogistic()
{
ControlViewModel model = new ControlViewModel();
model.itemSelected = "Logistic";
return RedirectToAction("MenuList", model);
}
This action is called once I click on a
<a href=@url.Action(subItem.action, subItem.controller)>
I want to be able to do all this without recharging the page, and just update some div instead.
Any Ideas ?
Thanks.
You can do this by using Ajax with jQuery
http://api.jquery.com/jQuery.ajax/ above is the docs for jquery ajax