Skip to content

Instantly share code, notes, and snippets.

@gregerhalltorp
Created February 17, 2012 15:45
Show Gist options
  • Save gregerhalltorp/1854093 to your computer and use it in GitHub Desktop.
Save gregerhalltorp/1854093 to your computer and use it in GitHub Desktop.
Menu rendering
public class NavController : Controller
{
public PartialViewResult Menu()
{
var controllers = new List<string> {
"Home", "Page", "User"
};
return PartialView(controllers);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment