This question is locked. New answers and comments are not allowed.
Hello,
I'd like to use the Action() method to load a partial view into a specific div.
My controller returns the following when I click on one of my menu items:
I would like that partial view rendered in a specific place. Something like this:
I'd like to use the Action() method to load a partial view into a specific div.
My controller returns the following when I click on one of my menu items:
return
this.PartialView("~/Views/Project/BudgetMain.ascx", viewModel);
I would like that partial view rendered in a specific place. Something like this:
.Action("div#BudgetArea",
"OpenBudget", "Budget");
I'm ok with not using Action if i can specify a $.load() call when the menu is clicked - if you could show me how to do that instead.
Thanks!
Chris