Tengo el siguiente problema: Por ejemplo, tengo una ruta como esta:
routes.Add(new Route("forums/thread/{threadOid}/last", new MvcRouteHandler())
Defaults = new RouteValueDictionary(
new { controller = "Thread", action ="ShowThreadLastPostPage"}),
Constraints = new RouteValueDictionary(new { threadOid = @"^\d+$" })
}
);
¿Hay alguna forma de usar el método RedirectToAction para navegar a la URL de esta manera?
forums/thread/{threadOid}/last#postOid