routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "My", action = "MyFolder", id = "" } // Parameter defaults
);
The above code will help invoking the view which is in MyFolder action which is in the MyController of the same project.
What if the MyController is in different project in the form of a dll, which I have included in my active project. How to invoke the respective View?