Hello,
I have a problem
My route have an extra paramater after hierarchical category.
/2009/World/Asia/08/12/bla-bla-bla
asp.net mvc does not support this because my routing should be
{year}/{*category}/{month}/{day}/{name}
i tried use constraint like
year = @"(\d{4})",category = @"((.+)/)+", month = @"(\d{2})", day = @"(\d{2})"
but i cannot find any solution.
Is there any comment?
Thank you