Url Routing for unknown number of params
问题 I have seen this post: MVC Handler for an unknown number of optional parameters but it's for MVC and doesn't seem to work for me as I get an error: A path segment that contains more than one section, such as a literal section or a parameter, cannot contain a catch-all parameter. I want to be able to have an indeterminate amount of params in a Url, I have the following route: RouteCollection.MapPageRoute("ManyParam", "{*params}.html", "~/Default.aspx"); This also seems to trigger the error