Which one is true?
routes.MapRoute("Default", "{controller}/{action}/{id}", new { controller = "Home", action = "Index", id = "" } );
routes.MapRoute("Default", "Area/{controller}/{action}/{id}", new { controller = "Home", action = "Index", id = "" } );
Both a and b
None of the above