I have a JS include in my master page and it seems to be tripping one of the routes every time.
Is tripping this route:
routes.MapRoute(
"CatalogType",
"Catalog/{group}/{type}/{index}/{browseSize}",
new { controller = "Catalog"
, action = "Types"
, group = ""
, type = ""
, index = ""
, browseSize = "" }
);
Is there something I can do to stop this behavior?
PS: I know there is a way to enforce a datatype on these params but for the life of me I cannot find a reference. Am I dreaming?