Hi,
I don't want to use the default route that vs.net creates:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);
I only want the route to get the www.example.com/ page, what is it? (note: I don't want www.example.com/default just the plain www.example.com to map to HomeController Action=Index).