다음과 같은 문제가 있습니다. 예를 들어 다음과 같은 경로가 있습니다.
routes.Add(new Route("forums/thread/{threadOid}/last", new MvcRouteHandler())
Defaults = new RouteValueDictionary(
new { controller = "Thread", action ="ShowThreadLastPostPage"}),
Constraints = new RouteValueDictionary(new { threadOid = @"^\d+$" })
}
);
RedirectToAction 메서드를 사용하여 다음과 같은 URL로 이동하는 방법이 있습니까?
forums/thread/{threadOid}/last#postOid