Can I have a path configured as :
routes.MapRoute(
name: "Default",
url: "{id}.zeko.com",
defaults: new { controller = "App",
action = "GetDetailsById",
id = UrlParameter.Optional
}
);
I want the id as a parameter to my method. Tell me where am I wrong?