Ho il seguente problema: Ad esempio, ho un percorso come questo:
routes.Add(new Route("forums/thread/{threadOid}/last", new MvcRouteHandler())
Defaults = new RouteValueDictionary(
new { controller = "Thread", action ="ShowThreadLastPostPage"}),
Constraints = new RouteValueDictionary(new { threadOid = @"^\d+$" })
}
);
C'è un modo utilizzando il metodo RedirectToAction per accedere all'URL in questo modo:
forums/thread/{threadOid}/last#postOid