I have an Ajax.Actionlink that fires to a method that is placed inside my controller which returns a list of users and renders a partial view.
[Authorize]
public ActionResult UsersAddresses()
{
...
...
return PartialView("AddressesList",users);
}
Is there any way how I can render two or more partial views at the same time?
Thanks