I wold like to map http://localhost/Guid-goes-here to ResellerController and fire Index action of that controller only when Guid-goes-here is not empty Guid. My routing table looks as follow:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Reseller",
"{id}",
new { controller = "Reseller", action = "Index", id = Guid.Empty }
//We can mark parameters as UrlParameter.Optional, but how to make it required?
);
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
}
And my action looks like this:
public ActionResult Index(Guid id)
{
// do some stuff here
}
But after application is started (with http://localhost) it redirects me to ResellerController with empty Guid as id parameter.
/reseller/{guid}. The route constraint will have to parse all HTTP requests to see if they are a valid GUID. – Cymen Sep 16 '11 at 22:40