I think you are confusing Route Views. ASP.NET MVC relies heavily on convention, and in this example, the route controller component uses it to find the controller. You can define a new route:
routes.MapRoute("Employees", "employees/{action}", new {
controller = "Employee",
action = "Index" });
source
share