Skip to content

Instantly share code, notes, and snippets.

@jinan-kordab
Created October 16, 2018 02:22
Show Gist options
  • Select an option

  • Save jinan-kordab/7b4f3c0fb2ea7955fecd193b6c456ff6 to your computer and use it in GitHub Desktop.

Select an option

Save jinan-kordab/7b4f3c0fb2ea7955fecd193b6c456ff6 to your computer and use it in GitHub Desktop.
Index action result for Dynamic Menu
public ActionResult Index()
{
List<Models.OurMenu> OurMenus = Helpers.MenuHelper.GetMenus();
ASPNETMVCNavigationMenu.Models.MenuModel menuModel = new Models.MenuModel();
menuModel.menus = OurMenus;
return View("Index",menuModel);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment