In ASP.NET MVC is there a way to enumerate the controllers through code and get their name?
example:
AccountController HomeController PersonControlle
You can reflect through your assembly and find all classes which inherit from type System.Web.MVC.Controller. Here's some sample code that shows how you could do that:
http://mvcsitemap.codeplex.com/WorkItem/View.aspx?WorkItemId=1567