Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Why would the route http://localhost:2222/2012-adidas-spring-classic/37, not get picked up from the below route match? I get a 404 error.

      public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
            routes.IgnoreRoute("{*vti_inf}", new { vti_inf = @"(.*/)?_vti_inf.html(/.*)?" });
            routes.IgnoreRoute("{*vti_rpc}", new { vti_rpc = @"(.*/)?_vti_rpc(/.*)?" });

            #region API

            routes.MapRouteLowercase(
             "NamedHomeEvent",
             "{year}-{name}/{Id}",
             new { controller = "Event", action = "Index", year = DateTime.Now.Year },
             new { year = @"\d{4}", Id = @"\d+" }
            );



   public virtual ActionResult Index(int? id, int? year, string name)
        {
share|improve this question
you can also use getglimpse.com to debug routes (and lots more) (getglimpse.com/Help/Plugin/Routes) – rob Dec 21 '12 at 7:29

1 Answer

up vote 4 down vote accepted

The routing engine cannot help you here. You could write a custom route to handle this case:

public class MyRoute : Route
{
    public MyRoute()
        : base(
            "{year-name}/{id}",
            new RouteValueDictionary(new { controller = "Event", action = "Index", id = UrlParameter.Optional }),
            new RouteValueDictionary(new { id = @"\d*" }),
            new MvcRouteHandler()
        )
    {
    }

    public override RouteData GetRouteData(HttpContextBase httpContext)
    {
        var routeData = base.GetRouteData(httpContext);
        if (routeData == null)
        {
            return null;
        }

        var yearName = (string)routeData.Values["year-name"];
        if (string.IsNullOrWhiteSpace(yearName))
        {
            return null;
        }

        var parts = yearName.Split(new[] { '-' }, 2, StringSplitOptions.RemoveEmptyEntries);
        if (parts.Length < 2)
        {
            return null;
        }

        var year = parts.First();
        int yearValue;
        if (!int.TryParse(year, out yearValue))
        {
            return null;
        }

        var name = parts.Last();

        routeData.Values.Add("year", year);
        routeData.Values.Add("name", name);

        return routeData;
    }
}

and then register this route:

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
    routes.IgnoreRoute("{*vti_inf}", new { vti_inf = @"(.*/)?_vti_inf.html(/.*)?" });
    routes.IgnoreRoute("{*vti_rpc}", new { vti_rpc = @"(.*/)?_vti_rpc(/.*)?" });

    routes.Add("NamedHomeEvent", new MyRoute());
}
share|improve this answer
I believe this will work just not with T4MVC – Mike Flynn Dec 21 '12 at 15:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.