asp.net mvc routing pattern is
{"some_parameter/{controller}/{action}/{id}"}
Is this a valid format if some_parameter can be null or string empty
|
asp.net mvc routing pattern is
Is this a valid format if |
|||||
|
|
I believe that what you wanted is Routing engine just matches patterns. If you want to handle both |
|||||||||||||
|
|
Edit I've just reordered the route registration so that it would work:
They should be registered in that order. Additionally the second route requires an id and some_parameter parameter otherwise it will never be hit because of the route before it. Even though the some_parameter and id parameters are set to optional, that would never happen because the route before would catch it if it was empty. |
|||||||
|